aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@schematics/angular/service/schema.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/service/schema.d.ts')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/service/schema.d.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/service/schema.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/service/schema.d.ts
deleted file mode 100644
index 1fa0906c..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/service/schema.d.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * Creates a new, generic service definition in the given or default project.
- */
-export interface Schema {
- /**
- * When true (the default), creates files at the top level of the project.
- */
- flat?: boolean;
- /**
- * The name of the service.
- */
- name: string;
- /**
- * The path at which to create the service, relative to the workspace root.
- */
- path?: string;
- /**
- * The name of the project.
- */
- project?: string;
- /**
- * Do not create "spec.ts" test files for the new service.
- */
- skipTests?: boolean;
-}