UNPKG

376 BTypeScriptView Raw
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}