projecte_ionic/node_modules/@angular-devkit/architect/src/progress-schema.d.ts
2022-02-09 18:30:03 +01:00

21 lines
367 B
TypeScript
Executable file

export interface Schema {
builder: {
[key: string]: any;
};
current?: number;
error?: any;
id: number;
state: State;
status?: string;
target?: {
[key: string]: any;
};
total?: number;
}
export declare enum State {
Error = "error",
Running = "running",
Stopped = "stopped",
Waiting = "waiting"
}