You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can confirm that this is an issue with the FieldSet type.
The workaround I've found until the #390 is merged is to re-declare the type in a d.ts file for example global.d.ts which is included in the tsconfig.ts
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
The text was updated successfully, but these errors were encountered: