@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.
19 lines (18 loc) • 561 B
TypeScript
import { default as React } from 'react';
export default BaseLayer;
declare class BaseLayer extends React.Component<any, any, any> {
constructor();
loadJSON(url: any): Promise<any>;
create(): void;
createLayer(json: any): void;
showToolTip(content: any, data: any, color: any, event: any): void;
moveToolTip(event: any): void;
gRef: React.RefObject<any>;
state: {
json: null;
};
applyInitialTransform(): void;
hiddenToolTip(event: any): void;
componentDidMount(): void;
render(): React.JSX.Element;
}