source: trip-planner-front/node_modules/@angular-devkit/architect/src/progress-schema.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 367 bytes
Line 
1export interface Schema {
2 builder: {
3 [key: string]: any;
4 };
5 current?: number;
6 error?: any;
7 id: number;
8 state: State;
9 status?: string;
10 target?: {
11 [key: string]: any;
12 };
13 total?: number;
14}
15export declare enum State {
16 Error = "error",
17 Running = "running",
18 Stopped = "stopped",
19 Waiting = "waiting"
20}
Note: See TracBrowser for help on using the repository browser.