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