()
| 83 | |
| 84 | export interface DatasetClient<Data extends Dictionary = Dictionary> { |
| 85 | get(): Promise<DatasetInfo | undefined>; |
| 86 | update(newFields: DatasetClientUpdateOptions): Promise<Partial<DatasetInfo>>; |
| 87 | delete(): Promise<void>; |
| 88 | downloadItems(...args: unknown[]): Promise<Buffer>; |
no outgoing calls