katoikia-app/web-ui/web-react/node_modules/primereact/chart/chart.d.ts

16 lines
321 B
TypeScript

import * as React from 'react';
export interface ChartProps {
id?: string;
type?: string;
data?: object;
options?: object;
plugins?: any[];
width?: string;
height?: string;
style?: object;
className?: string;
}
export declare class Chart extends React.Component<ChartProps, any> { }