Compare commits

..

1 Commits

Author SHA1 Message Date
Qingxiao Ren
46e8272e3b make url property of FileUploaderOptions optional 2022-12-13 14:19:05 +08:00

View File

@@ -31,7 +31,7 @@ export interface FileUploaderOptions {
maxFileSize?: number; maxFileSize?: number;
queueLimit?: number; queueLimit?: number;
removeAfterUpload?: boolean; removeAfterUpload?: boolean;
url: string; url?: string;
disableMultipart?: boolean; disableMultipart?: boolean;
itemAlias?: string; itemAlias?: string;
authTokenHeader?: string; authTokenHeader?: string;