Update return type for Facebook verification

This commit is contained in:
Darren Clarke 2024-05-16 13:00:18 +02:00
parent f6dc60eb08
commit e22a8e8d98
7 changed files with 939 additions and 475 deletions

View file

@ -22,7 +22,9 @@ export type SelectOption = {
export type FieldDescription = {
name: string;
label: string;
kind?: "text" | "phone" | "select" | "multi";
kind?: "text" | "phone" | "select" | "multi" | "qrcode";
getValue?: (id: string) => Promise<string>;
refreshInterval?: number;
getOptions?: (formState: any) => Promise<SelectOption[]>;
autogenerated?: "token";
hidden?: boolean;