make url property of FileUploaderOptions optional

This commit is contained in:
Qingxiao Ren
2022-12-13 14:19:05 +08:00
committed by GitHub
parent 6f5ac1cb94
commit 46e8272e3b

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;