react-google-charts
Version:
react-google-charts React component
11 lines (10 loc) • 478 B
TypeScript
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;