From 80fb14bda4fa38f1070d7606ca58058fb778fb20 Mon Sep 17 00:00:00 2001 From: Haroen Viaene Date: Wed, 24 Jul 2019 21:48:43 +0200 Subject: [PATCH] [airtable]: field can also be array (#37060) --- types/airtable/index.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/types/airtable/index.d.ts b/types/airtable/index.d.ts index ba943425fe..7c778ac2f9 100644 --- a/types/airtable/index.d.ts +++ b/types/airtable/index.d.ts @@ -15,7 +15,11 @@ declare global { namespace Airtable { interface FieldSet { - [key: string]: undefined | string | ReadonlyArray; + [key: string]: + | undefined + | string + | ReadonlyArray + | ReadonlyArray; } interface AirtableOptions {