interface VerificationFormProps {
    info: VerificationField;
    onConfirm: ((value, code, onSuccess) => void | Promise<void>);
    onSend: ((value) => void | Promise<void>);
}

Properties

Properties

onConfirm: ((value, code, onSuccess) => void | Promise<void>)

Type declaration

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

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

      Returns void | Promise<void>

onSend: ((value) => void | Promise<void>)

Type declaration

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

      • value: string

      Returns void | Promise<void>

Generated using TypeDoc