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>>
|
export interface FieldSet { |
|
[key: string]: |
|
| undefined |
|
| string |
|
| number |
|
| boolean |
|
| Collaborator |
|
| ReadonlyArray<Collaborator> |
|
| ReadonlyArray<string> |
|
| ReadonlyArray<Attachment>; |
|
} |
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>>airtable.js/src/field_set.ts
Lines 4 to 14 in 899adb4