24 lines
588 B
TypeScript
24 lines
588 B
TypeScript
export interface IProgressBarWait {
|
|
title?: string;
|
|
outTime?: number;
|
|
}
|
|
/**
|
|
* 进度条等待显示
|
|
* @class ProgressBarWait
|
|
*/
|
|
export declare class ProgressBarWait {
|
|
outTime: number;
|
|
title: string;
|
|
isTimeOut: boolean;
|
|
progress: number;
|
|
timer: any;
|
|
timeOut: any;
|
|
events: any[];
|
|
AddTimeOutEvent(callBack: () => void): void;
|
|
constructor(props: IProgressBarWait);
|
|
AppToaster: import("@blueprintjs/core").IToaster;
|
|
StartInterval: () => void;
|
|
UpdateProgressBar(): void;
|
|
End(): void;
|
|
}
|
|
//# sourceMappingURL=ProgressBarWait.d.ts.map
|