mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-28 12:43:06 +08:00
Fixed CellClassGetter interfaces according to ui-grid JS code
This commit is contained in:
Vendored
+2
-2
@@ -3752,7 +3752,7 @@ declare module uiGrid {
|
||||
}
|
||||
|
||||
export interface ICellClassGetter<TEntity> {
|
||||
(gridRow?: IGridRowOf<TEntity>, gridCol?: IGridColumnOf<TEntity>, colRenderIndex?: number): string;
|
||||
(grid?: IGridInstanceOf<TEntity>, gridRow?: IGridRowOf<TEntity>, gridCol?: IGridColumnOf<TEntity>, rowRenderIndex?: number, colRenderIndex?: number): string;
|
||||
}
|
||||
|
||||
export interface ICellTooltipGetter<TEntity> {
|
||||
@@ -3762,7 +3762,7 @@ declare module uiGrid {
|
||||
(gridCol: IGridColumnOf<TEntity>): string;
|
||||
}
|
||||
export interface IHeaderFooterCellClassGetter<TEntity> {
|
||||
(gridRow: IGridRowOf<TEntity>, rowRenderIndex: number, gridCol: IGridColumnOf<TEntity>, colRenderIndex: number)
|
||||
(grid: IGridInstanceOf<TEntity>, gridRow: IGridRowOf<TEntity>, gridCol: IGridColumnOf<TEntity>, rowRenderIndex: number, colRenderIndex: number)
|
||||
: string;
|
||||
}
|
||||
export interface IMenuItem {
|
||||
|
||||
Reference in New Issue
Block a user