UNPKG

@obliczeniowo/elementary

Version:
14 lines (13 loc) 424 B
import { Type } from '@angular/core'; import { ModellerBoxComponent } from '../components/modeller-box/modeller-box.component'; import { BoxItemType } from '../public-api'; import { ComponentData } from './component-data'; export interface BoxModel { title: string; components: ComponentData[]; type: BoxItemType; box?: Type<ModellerBoxComponent>; translations?: { [id: string]: string; }; }