UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

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