UNPKG

victory-group

Version:
14 lines 855 B
import React from "react"; import { EventPropTypeInterface, StringOrNumberOrCallback, VictoryCommonProps, VictoryDatableProps, VictoryMultiLabelableProps, VictoryStyleInterface, VictoryComponentConfiguration } from "victory-core"; export type VictoryGroupTTargetType = "data" | "labels" | "parent"; export interface VictoryGroupProps extends VictoryCommonProps, VictoryDatableProps, VictoryMultiLabelableProps { children?: React.ReactNode; color?: string; events?: EventPropTypeInterface<VictoryGroupTTargetType, StringOrNumberOrCallback>[]; eventKey?: StringOrNumberOrCallback; offset?: number; style?: VictoryStyleInterface; displayName?: string; } export declare const VictoryGroup: React.NamedExoticComponent<VictoryGroupProps> & VictoryComponentConfiguration<VictoryGroupProps>; //# sourceMappingURL=victory-group.d.ts.map