fix: drop modify permission for uploading new file (#5270)

This commit is contained in:
Ramires Viana
2025-07-13 03:16:01 -03:00
committed by GitHub
parent 7c716862c1
commit 0f27c91eca
7 changed files with 197 additions and 66 deletions

View File

@@ -28,8 +28,6 @@ interface UploadEntry {
type UploadList = UploadEntry[];
type Progress = number | boolean;
type CurrentUploadList = {
[key: string]: {
upload: import("tus-js-client").Upload;
@@ -43,9 +41,3 @@ type CurrentUploadList = {
interval: number | undefined;
};
};
interface ETAState {
sizes: number[];
progress: Progress[];
speedMbyte: number;
}