import * as ko from "knockout"; import template from "./subscriptionList.html"; import { Component } from "@paperbits/common/ko/decorators"; @Component({ selector: "subscription-list", template: template }) export class ProductListViewModel { public readonly layout: ko.Observable; public readonly runtimeConfig: ko.Observable; constructor() { this.layout = ko.observable(); this.runtimeConfig = ko.observable(); } }