[airtable]: field can also be array (#37060)

This commit is contained in:
Haroen Viaene
2019-07-24 21:48:43 +02:00
committed by Wesley Wigham
parent 7001b59f25
commit 80fb14bda4

View File

@@ -15,7 +15,11 @@ declare global {
namespace Airtable {
interface FieldSet {
[key: string]: undefined | string | ReadonlyArray<Attachment>;
[key: string]:
| undefined
| string
| ReadonlyArray<string>
| ReadonlyArray<Attachment>;
}
interface AirtableOptions {