componentUtil.d.ts 962 B

1234567891011121314151617181920
  1. import { GridOptions } from '../entities/gridOptions';
  2. import { GridApi } from '../gridApi';
  3. import { ColumnApi } from '../columnController/columnApi';
  4. export declare class ComponentUtil {
  5. static EVENTS: string[];
  6. private static EVENT_CALLBACKS;
  7. static STRING_PROPERTIES: string[];
  8. static OBJECT_PROPERTIES: string[];
  9. static ARRAY_PROPERTIES: string[];
  10. static NUMBER_PROPERTIES: string[];
  11. static BOOLEAN_PROPERTIES: string[];
  12. static FUNCTION_PROPERTIES: string[];
  13. static ALL_PROPERTIES: string[];
  14. static getEventCallbacks(): string[];
  15. static copyAttributesToGridOptions(gridOptions: GridOptions, component: any, skipEventDeprecationCheck?: boolean): GridOptions;
  16. static getCallbackForEvent(eventName: string): string;
  17. static processOnChange(changes: any, gridOptions: GridOptions, api: GridApi, columnApi: ColumnApi): void;
  18. static toBoolean(value: any): boolean;
  19. static toNumber(value: any): number;
  20. }