UNPKG

reaviz

Version:

Data Visualization using React

12 lines (10 loc) 387 B
import { ChartShallowDataShape } from '../common/data'; export type CalendarView = 'year' | 'month'; export declare const addWeeksToDate: (date: Date, weeks: number) => Date; export declare const weekDays: string[]; export declare const buildDataScales: (rawData: ChartShallowDataShape[], view: CalendarView) => { data: any[]; yDomain: any; xDomain: any; start: any; };