UNPKG

@ebay/ebayui-core

Version:

Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.

21 lines (20 loc) 453 B
import type { WithNormalizedProps } from "../../global"; interface TooltipInput { date: string; x: number; data: { label: string; } & Iterable<{ name: string; data: { label: string; x: number; }[]; }>; stacked?: boolean; } export interface Input extends WithNormalizedProps<TooltipInput> { } declare class Tooltip extends Marko.Component<Input> { } export default Tooltip;