Files
KAFM-Project/constants/types.ts

9 lines
173 B
TypeScript

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