Tooltip.d.ts 325 B

123456789101112
  1. declare module INSPECTOR {
  2. /**
  3. * Creates a tooltip for the given html element
  4. */
  5. class Tooltip {
  6. /** The tooltip is displayed for this element */
  7. private _elem;
  8. /** The tooltip div */
  9. private _infoDiv;
  10. constructor(elem: HTMLElement, tip: string);
  11. }
  12. }