com.phloxui
Version:
PhloxUI Ng2+ Framework
13 lines (12 loc) • 355 B
TypeScript
export declare class BackgroundProcess {
static readonly TYPE_UNDEFINED: string;
process: Promise<any>;
startTime: Date;
type: string;
name: string;
userAction: boolean;
result: any;
error: any;
options: any;
constructor(process: Promise<any>, processType: string, name: string, startTime?: Date, options?: any);
}