tooltipComponent.d.ts 575 B

123456789101112131415161718192021
  1. import { PopupComponent } from '../widgets/popupComponent';
  2. import { IComponent } from '../interfaces/iComponent';
  3. export interface ITooltipParams {
  4. api: any;
  5. columnApi: any;
  6. colDef: any;
  7. column: any;
  8. context: any;
  9. location?: string;
  10. value?: any;
  11. valueFormatted?: any;
  12. rowIndex?: number;
  13. node?: any;
  14. data?: any;
  15. }
  16. export interface ITooltipComp extends IComponent<ITooltipParams> {
  17. }
  18. export declare class TooltipComponent extends PopupComponent implements ITooltipComp {
  19. constructor();
  20. init(params: ITooltipParams): void;
  21. }