UNPKG

@lakutata/core

Version:

Lakutata Framework Core

9 lines (8 loc) 317 B
import { Component } from '../base/abstracts/Component'; import { IConstructor } from './IConstructor'; export interface IComponentsConfig<TComponent extends Component = Component> { [key: string]: { class: IConstructor<TComponent>; [propertyKey: string]: any; } | IConstructor<TComponent>; }