import { Type } from '@angular/core'; interface ComponentMap { name: string; component: Type; } interface ShellOptions { draggable?: boolean; resizable?: boolean; initialWidth?: number | string; initialHeight?: number | string; minWidth?: number | string; minHeight?: number | string; floating?: boolean; data?: any; } interface ShellLayoutParams { transform: string; xAxis: string | number; yAxis: string | number; width: string | number; height: string | number; } export { ComponentMap, ShellOptions, ShellLayoutParams, };