UNPKG

apim-developer-portal4

Version:

API management developer portal

11 lines (10 loc) 421 B
import { IInjector, IInjectorModule } from "@paperbits/common/injection"; import { ReportsByApiRuntime } from "./ko/runtime/reports-byapi-runtime"; /** * Inversion of control module that registers runtime-time dependencies. */ export class ReportsByApiRuntimeModule implements IInjectorModule { public register(injector: IInjector): void { injector.bind("reportsByApiRuntime", ReportsByApiRuntime); } }