2019-01-04 18:41:46 +08:00
|
|
|
import { IRequestOption, IUploadFileOption } from "../interface";
|
|
|
|
|
declare function start(obj: IRequestOption | IUploadFileOption): void;
|
|
|
|
|
declare function end(obj: IRequestOption | IUploadFileOption): void;
|
|
|
|
|
declare function report(name: string, start: number, end: number): void;
|
2018-12-21 17:28:46 +08:00
|
|
|
declare const _default: {
|
|
|
|
|
start: typeof start;
|
|
|
|
|
end: typeof end;
|
2019-01-04 18:41:46 +08:00
|
|
|
report: typeof report;
|
2018-12-21 17:28:46 +08:00
|
|
|
};
|
|
|
|
|
export default _default;
|