Skip to content

Commit

Permalink
refactor: switch to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
smotornyuk committed Mar 11, 2024
1 parent 0e619cd commit dfb5060
Show file tree
Hide file tree
Showing 19 changed files with 1,049 additions and 419 deletions.
377 changes: 0 additions & 377 deletions ckanext/files/assets/js/files--shared.js

This file was deleted.

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>;
}
}
}
}
Loading

0 comments on commit dfb5060

Please sign in to comment.