source: trip-planner-front/node_modules/@angular-devkit/architect/builders/operator-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: 376 bytes
Line 
1/**
2 * All input types of builders that perform operations on one or multiple sub-builders.
3 */
4export interface Schema {
5 builders?: Builder[];
6 targets?: Target[];
7}
8export interface Builder {
9 builder: string;
10 options?: {
11 [key: string]: any;
12 };
13}
14export interface Target {
15 overrides?: {
16 [key: string]: any;
17 };
18 target: string;
19}
Note: See TracBrowser for help on using the repository browser.