interface InputField {
    label?: string;
    name: string;
    placeholder?: string;
    rule?: FormRule[];
    type: "input" | "password";
}

Properties

label?: string
name: string
placeholder?: string
rule?: FormRule[]
type: "input" | "password"

Generated using TypeDoc