10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import { Login } from '@/types/auth/login';
|
|
import { Verification } from './auth/varification';
|
|
|
|
|
|
export type ILogin = {
|
|
phone: string
|
|
id: string,
|
|
}
|
|
|
|
export type IVerification = Verification |