ng2-qgrid
Version:
Angular Grid
19 lines (18 loc) • 758 B
TypeScript
import { ModelBinder } from 'ng2-qgrid/core/infrastructure/model.bind';
import { noop } from 'ng2-qgrid/core/utility/kit';
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { NgComponent } from './ng.component';
import { RootService } from './root.service';
import { Model } from 'ng2-qgrid/core/infrastructure/model';
export declare class ModelComponent extends NgComponent implements OnChanges, OnInit, OnDestroy {
root: RootService;
binder: ModelBinder;
commit: typeof noop;
protected models: string[];
constructor(root: RootService);
setup(): () => void;
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;
readonly model: Model;
}