react-native-chart-kit
Version:
Beautiful React Native charts for dashboards, reports, and data-rich mobile apps.
8 lines • 348 B
TypeScript
import type { LinearScale, NumericDomainInput } from "./types";
export type CreateLinearScaleOptions = {
domain?: NumericDomainInput;
values?: readonly number[];
range: [number, number];
};
export declare const createLinearScale: ({ domain, values, range }: CreateLinearScaleOptions) => LinearScale;
//# sourceMappingURL=linear.d.ts.map