You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
318 B
9 lines
318 B
import type { UploadRequestHandler } from './upload';
|
|
export declare class UploadAjaxError extends Error {
|
|
name: string;
|
|
status: number;
|
|
method: string;
|
|
url: string;
|
|
constructor(message: string, status: number, method: string, url: string);
|
|
}
|
|
export declare const ajaxUpload: UploadRequestHandler;
|
|
|