UNPKG

ng2-qgrid

Version:
18 lines (15 loc) 466 B
import { RowEditor } from './edit.row.editor'; import { CommandManager } from '../command/command.manager'; import { Command } from '../command/command'; import { Table } from '../dom/table'; /** * > Under Construction. */ export declare class EditRowView { constructor(model: any, table: Table, shortcut: { register: (commands: Command[]) => void }); editor: RowEditor; enter: Command; commit: Command; cancel: Command; reset: Command; }