import { EventEmitter, Type } from "@angular/core"; interface IEditorComponent { stInit(params: IEditorParams): void; setValue: EventEmitter; } interface IEditor { editorParams: IEditorParams | undefined; setValue: EventEmitter; } interface IEditorParams { editorComponent: Type; data?: any; input?: any; value?: any; column?: any; [otherProperty: string | number | symbol]: any; } export { IEditorComponent, IEditor, IEditorParams };