ag-grid-enterprise
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
16 lines (15 loc) • 647 B
TypeScript
import type { GetNoteParams, INotesDataService, NamedBean, SetNoteParams } from 'ag-grid-community';
import { BeanStub } from 'ag-grid-community';
export declare class NotesDataService extends BeanStub implements INotesDataService, NamedBean {
readonly beanName: "notesDataSvc";
private dataSource?;
postConstruct(): void;
hasDataSource(): boolean;
supportsFullWidthRows(): boolean;
getNote(params: GetNoteParams): import("ag-grid-community").Note<any> | undefined;
setNote(params: SetNoteParams): void;
private setDataSource;
private createInitParams;
private isFullWidthDataSource;
destroy(): void;
}