aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
new file mode 100644
index 00000000..9bc83751
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
@@ -0,0 +1,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;
+}