apim-developer-portal2
Version:
API management developer portal
15 lines (13 loc) • 390 B
text/typescript
import * as ko from "knockout";
import template from "./historyOfApi.html";
import { Component } from "@paperbits/common/ko/decorators";
({
selector: "historyOfApi",
template: template
})
export class HistoryOfApiViewModel {
public readonly runtimeConfig: ko.Observable<string>;
constructor() {
this.runtimeConfig = ko.observable();
}
}