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. --- .../@angular-devkit/schematics/src/rules/base.d.ts | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/rules/base.d.ts (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/rules/base.d.ts') diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/rules/base.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/rules/base.d.ts deleted file mode 100644 index f78b3895..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/rules/base.d.ts +++ /dev/null @@ -1,38 +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 { FileOperator, Rule, Source } from '../engine/interface'; -import { FilePredicate, MergeStrategy, Tree } from '../tree/interface'; -/** - * A Source that returns an tree as its single value. - */ -export declare function source(tree: Tree): Source; -/** - * A source that returns an empty tree. - */ -export declare function empty(): Source; -/** - * Chain multiple rules into a single rule. - */ -export declare function chain(rules: Rule[]): Rule; -/** - * Apply multiple rules to a source, and returns the source transformed. - */ -export declare function apply(source: Source, rules: Rule[]): Source; -/** - * Merge an input tree with the source passed in. - */ -export declare function mergeWith(source: Source, strategy?: MergeStrategy): Rule; -export declare function noop(): Rule; -export declare function filter(predicate: FilePredicate): Rule; -export declare function asSource(rule: Rule): Source; -export declare function branchAndMerge(rule: Rule, strategy?: MergeStrategy): Rule; -export declare function when(predicate: FilePredicate, operator: FileOperator): FileOperator; -export declare function partitionApplyMerge(predicate: FilePredicate, ruleYes: Rule, ruleNo?: Rule): Rule; -export declare function forEach(operator: FileOperator): Rule; -export declare function composeFileOperators(operators: FileOperator[]): FileOperator; -export declare function applyToSubtree(path: string, rules: Rule[]): Rule; -- cgit v1.2.3