@ibyar/cli
Version:
The Ibyar/Aurora CLI tool
22 lines • 626 B
TypeScript
import ts from 'typescript/lib/tsserverlibrary.js';
/**
* search for `ɵɵ0Directive.*0ɵɵ` type
*
* example:
* ```ts
* export type ɵɵ0IfDirective0ɵɵ = {
* selector: '*if';
* successor: '*else',
* inputs: [
* { name: 'ifCondition', aliasName: 'if' },
* { name: 'thenTemplateRef', aliasName: 'then' },
* { name: 'elseTemplateRef', aliasName: 'else' },
* ],
* outputs: [],
* };
* ```
* @param program a ts program
* @returns a transformer factory of source file
*/
export declare function scanDirectivesTypeVisitor(sourceFile: ts.SourceFile): void;
//# sourceMappingURL=scan-directives.d.ts.map