We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe591e4 commit 5f42fa6Copy full SHA for 5f42fa6
packages/runtime/src/interfaces/iocModule.ts
@@ -12,6 +12,7 @@ export type ServiceIdentifier<T = unknown> =
12
| Function;
13
14
export interface IocContainer {
15
+ get<T>(controller: ServiceIdentifier<T>): T;
16
get<T>(controller: ServiceIdentifier<T>): Promise<T>;
17
}
18
0 commit comments