@platform/ui.datagrid
Version:
Isolated tabular DataGrid.
12 lines (11 loc) • 381 B
TypeScript
import { Observable } from 'rxjs';
import { t } from '../common';
export declare class BindingMonitor {
constructor(args: {
grid: t.IGrid;
});
readonly grid: t.IGrid;
readonly keydown$: Observable<t.IGridKeydown>;
is(command: t.GridCommand, e: t.IGridKeydown): boolean;
monitor(command: t.GridCommand, handler: (e: t.IGridKeydown) => void): void;
}