interface CheckInputProps {
    info: CheckField;
    onCheck: ((value, onSuccess) => void | Promise<void>);
}

Properties

Properties

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>

Generated using TypeDoc