ngast
Version:
Parsing tools for Angular. The project is an abstraction over the Angular compiler which provides friendly interface.
8 lines (7 loc) • 532 B
TypeScript
import { Symbol } from './symbol';
export declare class PipeSymbol extends Symbol<'Pipe'> {
readonly annotation = "Pipe";
get metadata(): import("@angular/compiler").R3PipeMetadata | undefined;
/** Return dependencies injected in the constructor of the pipe */
getDependencies(): (import("./injectable.symbol").InjectableSymbol | import("./module.symbol").NgModuleSymbol | import("./directive.symbol").DirectiveSymbol | import("./component.symbol").ComponentSymbol | PipeSymbol | import("./provider").Provider)[];
}