victory-native
Version:
A charting library for React Native with a focus on performance and customization.
25 lines (24 loc) • 652 B
TypeScript
type BodyOptions<ColorValue> = {
color?: ColorValue;
};
type WickOptions<ColorValue> = {
color?: ColorValue;
strokeWidth?: number;
};
export declare const resolveCandlestickPathOptions: <ColorValue, CustomBodyOptions extends BodyOptions<ColorValue>, CustomWickOptions extends WickOptions<ColorValue>>({ color, wickStrokeWidth, options, }: {
color: ColorValue;
wickStrokeWidth: number;
options: {
body?: CustomBodyOptions;
wick?: CustomWickOptions;
};
}) => {
bodyOptions: {
color: ColorValue;
};
wickOptions: {
color: ColorValue;
strokeWidth: number;
};
};
export {};