jquintozamora/react-d3-treemap

View on GitHub
src/components/Tooltip/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type TooltipPlacement =
  | "top"
  | "topRight"
  | "topLeft"
  | "bottom"
  | "bottomRight"
  | "bottomLeft"
  | "right"
  | "left";

export type TooltipPosition = [number, number];