fix import issue caused by renaming

This commit is contained in:
Loewy 2024-01-15 18:05:21 -08:00
parent 5dc141a14a
commit 9a61ea59b2

View File

@ -2,11 +2,11 @@ import React from 'react';
import { Path } from 'react-native-svg';
import { calculateBarOrigin, drawBarPath } from './custom-bar-utils';
import { ScaleFunction } from './graph-types';
import { ScaleBandType, ScaleLinearType, } from './graph-types';
interface BarProps {
scaleX: ScaleFunction;
scaleY: ScaleFunction;
scaleX: ScaleBandType;
scaleY: ScaleLinearType;
data: { value: number };
barNumber: number;
index: number;