UNPKG

ajsfw

Version:
23 lines (22 loc) 846 B
export declare class ProgressBar { protected static _total: number; static total: number; protected static _current: number; static current: number; protected static _label: string; protected static _queue: string[]; protected static _pbar: HTMLElement; protected static _perc: HTMLElement; protected static _lbl: HTMLElement; static setDOMElement(progressBarElementId: string): void; static setTotal(total: number): void; static setCurrent(current: number): void; static setLabel(label: string): void; static resourceLoading(label: string): void; static resourceLoaded(label: string): void; static show(): void; static hide(): void; protected static _hideEnd(): void; protected static _update(): void; protected static _checkDOM(): boolean; }