UNPKG

@ebay/ebayui-core

Version:

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

12 lines (11 loc) 313 B
import type { WithNormalizedProps } from "../../global"; interface DonutTooltipInput { name: string; tooltip?: string; value: string; } export interface Input extends WithNormalizedProps<DonutTooltipInput> { } declare class DonutTooltip extends Marko.Component<Input> { } export default DonutTooltip;