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