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