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