aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.d.ts
blob: b9c5b7e44c8eb826e2776fa5c516d435a9816682 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export interface Schema {
    /**
     * Link to schema.
     */
    $schema?: string;
    builders: {
        [key: string]: Builder;
    };
}
/**
 * Target options for Builders.
 */
export interface Builder {
    /**
     * The builder class module.
     */
    class?: string;
    /**
     * Builder description.
     */
    description: string;
    /**
     * The next generation builder module.
     */
    implementation?: string;
    /**
     * Schema for builder option validation.
     */
    schema: string;
}