@lakutata/core
Version:
Lakutata Framework Core
9 lines (8 loc) • 317 B
TypeScript
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>;
}