@ebay/ebayui-core
Version:
Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.
20 lines (19 loc) • 468 B
TypeScript
import type { WithNormalizedProps } from "../../global";
interface TooltipInput {
date: string;
points?: {
point: {
tooltip?: string;
series: {
name: string;
};
label: string;
};
}[];
"series-length"?: number | boolean;
}
export interface Input extends WithNormalizedProps<TooltipInput> {
}
declare class Tooltip extends Marko.Component<Input> {
}
export default Tooltip;