From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../schematics/tools/fallback-engine-host.d.ts | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tools/fallback-engine-host.d.ts (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tools/fallback-engine-host.d.ts') diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tools/fallback-engine-host.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tools/fallback-engine-host.d.ts deleted file mode 100644 index 8a915a5e..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tools/fallback-engine-host.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ -/// -import { Observable } from 'rxjs'; -import { Url } from 'url'; -import { CollectionDescription, EngineHost, RuleFactory, SchematicDescription, Source, TaskExecutor, TypedSchematicContext } from '../src'; -export declare type FallbackCollectionDescription = { - host: EngineHost<{}, {}>; - description: CollectionDescription<{}>; -}; -export declare type FallbackSchematicDescription = { - description: SchematicDescription<{}, {}>; -}; -export declare type FallbackContext = TypedSchematicContext; -/** - * An EngineHost that support multiple hosts in a fallback configuration. If a host does not - * have a collection/schematics, use the following host before giving up. - */ -export declare class FallbackEngineHost implements EngineHost<{}, {}> { - private _hosts; - addHost(host: EngineHost): void; - createCollectionDescription(name: string, requester?: CollectionDescription<{}>): CollectionDescription; - createSchematicDescription(name: string, collection: CollectionDescription): SchematicDescription | null; - getSchematicRuleFactory(schematic: SchematicDescription, collection: CollectionDescription): RuleFactory; - createSourceFromUrl(url: Url, context: FallbackContext): Source | null; - transformOptions(schematic: SchematicDescription, options: OptionT, context?: FallbackContext): Observable; - transformContext(context: FallbackContext): FallbackContext; - listSchematicNames(collection: CollectionDescription): string[]; - createTaskExecutor(name: string): Observable; - hasTaskExecutor(name: string): boolean; -} -- cgit v1.2.3