UNPKG

reaviz

Version:

Data Visualization using React

16 lines (15 loc) 402 B
export interface PropFunctionTypes { /** * Classnames to apply to the element. */ className?: any; /** * CSS styles to apply to the element. */ style?: any; } export declare const functionProps: (prop: string, val: any, data: any) => any; export declare const constructFunctionProps: (props: PropFunctionTypes, data: any) => { className: any; style: any; };