1234567891011121314151617 |
- interface SkipSelfDecorator {
- (): any;
- new (): SkipSelfDecorator;
- }
- /**
- * when resolving this dependency, skip the current injector
- */
- export declare const SkipSelf: SkipSelfDecorator;
- interface SelfDecorator {
- (): any;
- new (): SelfDecorator;
- }
- /**
- * when resolving this dependency, only search the current injector
- */
- export declare const Self: SelfDecorator;
- export {};
|