@devgateway/dvz-ui-react
Version:
A modular, embeddable React component library for data visualization and UI, built with TypeScript. Provides reusable components for charts, maps, dashboards, and more, with built-in support for internationalization and Redux integration.
7 lines (6 loc) • 318 B
TypeScript
import { default as React } from 'react';
export interface WithGoogleAnalyticsProps {
WrappedComponent: React.ComponentType<any>;
options?: any;
}
export declare const withTracker: <T extends WithGoogleAnalyticsProps>(WrappedComponent: React.ComponentType<T>, options?: {}) => (props: T) => React.JSX.Element;