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