UNPKG

airtable

Version:

The official Airtable JavaScript library.

6 lines (5 loc) 275 B
import { Collaborator } from './collaborator'; import { Attachment } from './attachment'; export interface FieldSet { [key: string]: undefined | string | number | boolean | Collaborator | ReadonlyArray<Collaborator> | ReadonlyArray<string> | ReadonlyArray<Attachment>; }