UNPKG

685 BTypeScriptView Raw
1// Type definitions for ag-grid v18.1.2
2// Project: http://www.ag-grid.com/
3// Definitions by: Niall Crosby <https://github.com/ag-grid/>
4import { GridOptionsWrapper } from "../../gridOptionsWrapper";
5import { Component } from "../../widgets/component";
6import { IComponent } from "../../interfaces/iComponent";
7export interface INoRowsOverlayParams {
8}
9export interface INoRowsOverlayComp extends IComponent<INoRowsOverlayParams> {
10}
11export declare class NoRowsOverlayComponent extends Component implements INoRowsOverlayComp {
12 private static DEFAULT_NO_ROWS_TEMPLATE;
13 gridOptionsWrapper: GridOptionsWrapper;
14 constructor();
15 init(params: INoRowsOverlayParams): void;
16}