UNPKG

apim-developer-portal4

Version:

API management developer portal

11 lines (9 loc) 500 B
import { IInjectorModule, IInjector } from "@paperbits/common/injection"; import { HistoryOfApiModelBinder } from "../historyOfApiModelBinder"; import { HistoryOfApiViewModelBinder } from "./historyOfApiViewModelBinder"; export class HistoryOfApiModule implements IInjectorModule { public register(injector: IInjector): void { injector.bindToCollection("modelBinders", HistoryOfApiModelBinder); injector.bindToCollection("viewModelBinders", HistoryOfApiViewModelBinder); } }