UNPKG

481 BTypeScriptView Raw
1import { Predicate } from '@ibm-wch-sdk/utils';
2import { NamedDeclaration, Node, SyntaxKind } from 'typescript';
3export declare function byType(aType: SyntaxKind): Predicate<Node>;
4export declare function byText(aText: string): Predicate<Node>;
5export declare function byName(aText: string): Predicate<NamedDeclaration>;
6export declare function byTypeAndName(aType: SyntaxKind, aName: string): Predicate<Node>;
7export declare function byIdentifier(aName: string): Predicate<Node>;