dependencyWithNew.d.ts 251 B

123456789
  1. interface ToSelfDecorator {
  2. (): any;
  3. new (): ToSelfDecorator;
  4. }
  5. /**
  6. * Always initialize a new instance of that dependency instead of getting the cached instance from the injector.
  7. */
  8. export declare const WithNew: ToSelfDecorator;
  9. export {};