UNPKG

apim-developer-portal1

Version:

API management developer portal

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