@obliczeniowo/elementary
Version:
Library made in Angular version 19
14 lines (13 loc) • 424 B
TypeScript
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;
};
}