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