ng2-qgrid
Version:
Angular Grid
18 lines (15 loc) • 466 B
TypeScript
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;
}