Skip to content

RecordInfo

type RecordInfo = {
[fieldApiName: string]: {
label: string;
dataType:
| 'Picklist'
| 'String'
| 'Double'
| 'Boolean'
| 'Url'
| 'Email'
| 'Currency'
| 'Phone'
| 'Date'
| 'DateTime';
values?: Option[]
}
}