9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
export type Step = "login" | "verify" | "forgot";
|
|
|
|
|
|
export interface Props {
|
|
onBack?: () => void;
|
|
onSuccess?: () => void;
|
|
onForgotPassword?:()=>void;
|
|
item?: any;
|
|
} |