UNPKG

react-google-charts

Version:
11 lines (10 loc) 478 B
import { GoogleViz, GoogleChartWrapper, ReactGoogleChartProps, GoogleChartDashboard } from "../../types"; export type ChartDrawArgs = { data: ReactGoogleChartProps["data"]; }; export type UseGoogleChartDataTableParams = ReactGoogleChartProps & { googleChartWrapper?: GoogleChartWrapper | null; google: GoogleViz; googleChartDashboard?: GoogleChartDashboard | null; }; export declare const useGoogleChartDataTable: (props: UseGoogleChartDataTableParams) => void;