Skip to content

Commit

Permalink
Merge e1a9643 into b03e36c
Browse files Browse the repository at this point in the history
  • Loading branch information
jbpionnier committed Oct 18, 2018
2 parents b03e36c + e1a9643 commit 876d429
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/common/interfaces/abstract.interface.ts
@@ -0,0 +1,3 @@
export interface Abstract<T> extends Function {
prototype: T;
}
1 change: 1 addition & 0 deletions packages/common/interfaces/index.ts
@@ -1,3 +1,4 @@
export * from './abstract.interface';
export * from './controllers/controller-metadata.interface';
export * from './controllers/controller.interface';
export * from './exceptions/exception-filter.interface';
Expand Down
@@ -1,3 +1,4 @@
import { Abstract } from '../abstract.interface';
import { Type } from '../type.interface';
import { DynamicModule } from './dynamic-module.interface';
import { ForwardReference } from './forward-reference.interface';
Expand All @@ -16,6 +17,7 @@ export interface ModuleMetadata {
| symbol
| Provider
| ForwardReference
| Abstract<any>
>;
/** @deprecated */
modules?: Array<
Expand Down

0 comments on commit 876d429

Please sign in to comment.