@ebay/ebayui-core
Version:
Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.
14 lines (13 loc) • 371 B
TypeScript
import type { WithNormalizedProps } from "../../global";
export interface LegendItem {
name: string;
value: number | string | undefined;
}
export interface ChartLegendInput {
item: LegendItem[];
}
export interface Input extends WithNormalizedProps<ChartLegendInput> {
}
declare class ChartLegend extends Marko.Component<Input> {
}
export default ChartLegend;