ng2-qgrid
Version:
Angular Grid
14 lines (13 loc) • 437 B
TypeScript
import { OnDestroy, OnInit, EventEmitter } from '@angular/core';
import { Command } from 'ng2-qgrid/core/command/command';
export declare class CommandDirective implements OnInit, OnDestroy {
private shortcut;
private shortcutOff;
command: Command;
commandContext: any;
execute: EventEmitter<{}>;
constructor();
ngOnInit(): void;
onKeyDown(e: KeyboardEvent): void;
ngOnDestroy(): void;
}