diff --git a/src/types/.gitkeep b/src/types/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src/types/auth/login.ts b/src/types/auth/login.ts index 17ca1cb..d847120 100644 --- a/src/types/auth/login.ts +++ b/src/types/auth/login.ts @@ -1,5 +1,4 @@ export interface Login { id: string - email: string phone: string } \ No newline at end of file diff --git a/src/types/auth/varification.ts b/src/types/auth/varification.ts new file mode 100644 index 0000000..f5946dd --- /dev/null +++ b/src/types/auth/varification.ts @@ -0,0 +1,5 @@ +export interface Verification { + phone: string + otp: number + user: string +} \ No newline at end of file diff --git a/src/types/index.ts b/src/types/index.ts new file mode 100644 index 0000000..6be00a1 --- /dev/null +++ b/src/types/index.ts @@ -0,0 +1,6 @@ +import { Login } from '@/types/auth/login'; +import { Verification } from './auth/varification'; + + +export type ILogin = Login +export type IVerification = Verification \ No newline at end of file