export type InputType = "text" | "password" | "number" | "email"; export const inputType = { text: "text" as InputType, password: "password" as InputType, number: "number" as InputType, email: "email" as InputType, };