diff --git a/types/airtable/index.d.ts b/types/airtable/index.d.ts index 7c778ac2f9..bf5e89a786 100644 --- a/types/airtable/index.d.ts +++ b/types/airtable/index.d.ts @@ -37,6 +37,12 @@ declare global { interface Table { select(opt?: SelectOptions): Query; + find(id: string): Promise>; + create(record: TFields, opts?: { typecast: boolean }): Promise>; + create(records: TFields[], opts?: { typecast: boolean }): Promise>>; + update(...args: any[]): Promise; + replace(...args: any[]): Promise; + destroy(...args: any[]): Promise; } interface SelectOptions {