We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b52b86 + 086e1e9 commit fbc4cdfCopy full SHA for fbc4cdf
src/DatasetManager.type.js
@@ -82,6 +82,9 @@ interface DatasetManager {
82
83
// We assume we can write to the dataset if not specified
84
isWritable?: () => boolean;
85
+
86
+ // If this is undefined, it's assumed the dataset manager doesn't support uploading
87
+ uploadFiles?: (files: Array<{ data: Buffer, destinationUrl: string }>) => Promise<{ uploadUrl: string }>
88
}
89
90
export default DatasetManager
0 commit comments