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