import type { ColumnEditor } from './columnEditor.interface.js'; export interface EditorDualInput extends Partial { /** Associated Item Field */ field: string; /** Editor Type */ type: 'integer' | 'float' | 'number' | 'password' | 'text' | 'readonly'; } export interface ColumnEditorDualInput { leftInput: EditorDualInput; rightInput: EditorDualInput; }