本文整理匯總了TypeScript中awilix.AwilixContainer類的典型用法代碼示例。如果您正苦於以下問題:TypeScript AwilixContainer類的具體用法?TypeScript AwilixContainer怎麽用?TypeScript AwilixContainer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了AwilixContainer類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: debug
public registerService<T extends object>(
tag: string | symbol,
Class: ServiceConstructor<T>
) {
debug('registerClass', Class, typeof Class)
this._container.register(tag, asClass(Class).singleton())
}
示例2:
public resolve<T>(tag: string | symbol): T {
return this._container.resolve(tag)
}
示例3: destroy
public destroy() {
this._container.dispose()
DIContainer._instance = undefined
}