aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/input-schema.d.ts
blob: 614d5ed1aab2935e6895df30e00389fdf9922c61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export interface Schema {
    currentDirectory: string;
    id: number;
    info: {
        [key: string]: any;
    };
    options?: {
        [key: string]: any;
    };
    target?: Target;
    workspaceRoot: string;
}
export interface Target {
    configuration?: string;
    project: string;
    target: string;
}