1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | import { strings } from '@angular-devkit/core';
|
9 | import * as formats from './formats/index';
|
10 | import { FilePredicate, MergeStrategy, Tree as TreeInterface } from './tree/interface';
|
11 | import * as workflow from './workflow/index';
|
12 | export { SchematicsException } from './exception/exception';
|
13 | export * from './tree/action';
|
14 | export * from './engine/index';
|
15 | export * from './exception/exception';
|
16 | export * from './tree/interface';
|
17 | export * from './rules/base';
|
18 | export * from './rules/call';
|
19 | export * from './rules/move';
|
20 | export * from './rules/random';
|
21 | export * from './rules/schematic';
|
22 | export * from './rules/template';
|
23 | export * from './rules/url';
|
24 | export * from './tree/delegate';
|
25 | export * from './tree/empty';
|
26 | export * from './tree/host-tree';
|
27 | export type { UpdateRecorder } from './tree/interface';
|
28 | export * from './engine/schematic';
|
29 | export * from './sink/dryrun';
|
30 | export * from './sink/host';
|
31 | export * from './sink/sink';
|
32 | export { formats, strings, workflow };
|
33 | export interface TreeConstructor {
|
34 | empty(): TreeInterface;
|
35 | branch(tree: TreeInterface): TreeInterface;
|
36 | merge(tree: TreeInterface, other: TreeInterface, strategy?: MergeStrategy): TreeInterface;
|
37 | partition(tree: TreeInterface, predicate: FilePredicate<boolean>): [TreeInterface, TreeInterface];
|
38 | optimize(tree: TreeInterface): TreeInterface;
|
39 | }
|
40 | export type Tree = TreeInterface;
|
41 | export declare const Tree: TreeConstructor;
|