turkmentv_front/typings/auth-input.type.ts

8 lines
148 B
TypeScript

export interface IAuthInput {
id: string;
placeholder: string;
type: "email" | "text" | "password";
required?: boolean;
label?: string;
}