UNPKG

angular-material-datatransfer-lib

Version:

A HTML5 datatransfer UI for handling upload and download of multiple simultaneous files.

22 lines (21 loc) 601 B
export interface IPreprocessContainer { percent: number; pause(pause: boolean): void; isPaused(): boolean; cancel(cancel: boolean): void; isCancelled(): boolean; doWork(): void; run(): void; } export declare class PreprocessContainer implements IPreprocessContainer { percent: number; private _isPaused; private _isCancelled; constructor(init?: Partial<PreprocessContainer>); pause(pause: boolean): void; isPaused(): boolean; cancel(cancel: boolean): void; isCancelled(): boolean; doWork(): void; run(): void; }