-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e619cd
commit dfb5060
Showing
19 changed files
with
1,049 additions
and
419 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
ckanext/files/assets/scripts/files--google-cloud-storage-uploader.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
declare namespace ckan { | ||
namespace CKANEXT_FILES { | ||
namespace adapters { | ||
type GCSUploadInfo = UploadInfo & { | ||
storage_data: StorageData & { | ||
session_url: string; | ||
}; | ||
}; | ||
class GCSMultipart extends Multipart { | ||
_uploadChunk(info: GCSUploadInfo, part: Blob, start: number): Promise<UploadInfo>; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.