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); } }