1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | import { BaseException } from '@angular-devkit/core';
|
9 | import { Observable } from 'rxjs';
|
10 | import { Rule, SchematicContext, Source } from '../engine/interface';
|
11 | import { Tree } from '../tree/interface';
|
12 |
|
13 |
|
14 |
|
15 | export declare class InvalidRuleResultException extends BaseException {
|
16 | constructor(value?: {});
|
17 | }
|
18 | export declare class InvalidSourceResultException extends BaseException {
|
19 | constructor(value?: {});
|
20 | }
|
21 | export declare function callSource(source: Source, context: SchematicContext): Observable<Tree>;
|
22 | export declare function callRule(rule: Rule, input: Tree | Observable<Tree>, context: SchematicContext): Observable<Tree>;
|