ng2-qgrid
Version:
Angular Grid
32 lines (31 loc) • 971 B
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
import { NgComponent } from '../../infrastructure/component/ng.component';
import { CellView } from 'ng2-qgrid/core/scene/view/cell.view';
import { Command } from 'ng2-qgrid/core/command/command';
import { Model } from 'ng2-qgrid/core/infrastructure/model';
export declare class ReferenceComponent extends NgComponent implements OnInit {
private _value;
private _model;
private _reference;
autofocus: boolean;
cell: CellView;
value: any;
valueChange: EventEmitter<any>;
model: Model;
modelChange: EventEmitter<Model>;
reference: {
commit: Command<any>;
cancel: Command<any>;
value: any;
};
referenceChange: EventEmitter<{
commit: Command<any>;
cancel: Command<any>;
value: any;
}>;
context: {
$implicit: ReferenceComponent;
};
constructor();
ngOnInit(): void;
}