UNPKG

apim-developer-portal4

Version:

API management developer portal

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