import { UNComponentsFlows } from '../../flows/UNComponentsFlows'; export class UnitComponentsUiManager { public flows: UNComponentsFlows = new UNComponentsFlows(); constructor() { this.init(); } private init = () => { this.flows = new UNComponentsFlows(); }; }