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;
queueLimit?: number;
removeAfterUpload?: boolean;
url: string;
url?: string;
disableMultipart?: boolean;
itemAlias?: string;
authTokenHeader?: string;