react-native-wagmi-charts
Version:
A sweet candlestick chart for React Native
17 lines (16 loc) • 448 B
TypeScript
import type { TFormatterFn } from '../../types';
import type { TPriceType } from './types';
import type { SharedValue } from 'react-native-reanimated';
export declare function useCandlestickChartPrice({
format,
precision,
type,
}?: {
format?: TFormatterFn<string>;
precision?: number;
type?: TPriceType;
}): {
value: Readonly<SharedValue<string>>;
formatted: Readonly<SharedValue<string>>;
};
//# sourceMappingURL=usePrice.d.ts.map