-
Notifications
You must be signed in to change notification settings - Fork 434
Open
grepdemos/airtable.js
#3Description
It looks like a Lookup field can have the following types
array of (numbers | strings | booleans | any)
Which would correlate to
Array<string | boolean | number | any>
or possibly
Array<string | boolean | number | Record<string, unknown>>
Lines 4 to 14 in 899adb4
export interface FieldSet { | |
[key: string]: | |
| undefined | |
| string | |
| number | |
| boolean | |
| Collaborator | |
| ReadonlyArray<Collaborator> | |
| ReadonlyArray<string> | |
| ReadonlyArray<Attachment>; | |
} |
Metadata
Metadata
Assignees
Labels
No labels