mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-07 02:30:12 +00:00
[airtable]: field can also be array (#37060)
This commit is contained in:
committed by
Wesley Wigham
parent
7001b59f25
commit
80fb14bda4
6
types/airtable/index.d.ts
vendored
6
types/airtable/index.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user