1 2 3 4 5 6 7 8 9 10 11 12 13
import { Component, ComponentNames } from '.'; export class NetworkUpdateable extends Component { public isPublish: boolean; public isSubscribe: boolean; constructor(isPublish: boolean, isSubscribe: boolean) { super(ComponentNames.NetworkUpdateable); this.isPublish = isPublish; this.isSubscribe = isSubscribe; } }