import PanelManager from '..'; import { ModuleCollection } from '../../abstract'; import Panel from './Panel'; export default class Panels extends ModuleCollection { constructor(module: PanelManager, models: Panel[] | Array>) { super(module, models, Panel); } } Panels.prototype.model = Panel;