interface CheckField {
    label?: string;
    name: string;
    onCheck: ((value, onSuccess) => void | Promise<void>);
    placeholder?: string;
    rule?: FormRule[];
    type: "check";
}

Properties

label?: string
name: string
onCheck: ((value, onSuccess) => void | Promise<void>)

Type declaration

    • (value, onSuccess): void | Promise<void>
    • Parameters

      • value: string
      • onSuccess: (() => void)
          • (): void
          • Returns void

      Returns void | Promise<void>

placeholder?: string
rule?: FormRule[]
type: "check"

Generated using TypeDoc