UNPKG

ag-grid

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

17 lines (16 loc) 599 B
// Type definitions for ag-grid v17.0.0 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby <https://github.com/ag-grid/> import { IComponent } from "../interfaces/iComponent"; export interface IDate { /** Returns the current date represented by this editor */ getDate(): Date; /** Sets the date represented by this component */ setDate(date: Date): void; } export interface IDateParams { /** Method for component to tell ag-Grid that the date has changed. */ onDateChanged: () => void; } export interface IDateComp extends IComponent<IDateParams>, IDate { }