ng2-qgrid
Version:
Angular Grid
27 lines (26 loc) • 881 B
TypeScript
import { EventEmitter, AfterViewInit } from '@angular/core';
import { Command } from 'ng2-qgrid/core/command/command';
import { NgComponent } from '../../infrastructure/component/ng.component';
import { CellView } from 'ng2-qgrid/core/scene/view/cell.view';
import { Model } from 'ng2-qgrid/core/infrastructure/model';
export declare class ReferenceEditorComponent extends NgComponent implements AfterViewInit {
private state;
caption: string;
cell: CellView;
valueChange: EventEmitter<any>;
afterSubmit: EventEmitter<{}>;
afterCancel: EventEmitter<{}>;
reference: {
commit: Command;
cancel: Command;
};
model: Model;
context: {
$implicit: ReferenceEditorComponent;
};
submit: Command<any>;
cancel: Command<any>;
constructor();
value: any;
ngAfterViewInit(): void;
}