UNPKG

ag-grid-community

Version:

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

16 lines (15 loc) 738 B
import { GridOptionsWrapper } from '../gridOptionsWrapper'; import { Column } from '../entities/column'; export declare const iconNameClassMap: { [key: string]: string; }; /** * If icon provided, use this (either a string, or a function callback). * if not, then use the default icon from the theme * @param {string} iconName * @param {GridOptionsWrapper} gridOptionsWrapper * @param {Column | null} [column] * @returns {HTMLElement} */ export declare function createIcon(iconName: string, gridOptionsWrapper: GridOptionsWrapper, column: Column | null): HTMLElement; export declare function createIconNoSpan(iconName: string, gridOptionsWrapper: GridOptionsWrapper, column?: Column | null, forceCreate?: boolean): HTMLElement;