aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
blob: 9bc83751ffbd1729943ded25e6cc028a35dddaaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * All input types of builders that perform operations on one or multiple sub-builders.
 */
export interface Schema {
    builders?: Builder[];
    targets?: Target[];
}
export interface Builder {
    builder: string;
    options?: {
        [key: string]: any;
    };
}
export interface Target {
    overrides?: {
        [key: string]: any;
    };
    target: string;
}