turkmentv_front/typings/auth-input.type.ts

8 lines
148 B
TypeScript
Raw Permalink Normal View History

2024-08-19 12:44:56 +00:00
export interface IAuthInput {
id: string;
placeholder: string;
type: "email" | "text" | "password";
required?: boolean;
label?: string;
}