@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.
10 lines (9 loc) • 344 B
TypeScript
import { default as Layer } from './Layer';
export default BaseLayer;
declare class BaseLayer extends Layer {
createPaths(json: any): void;
g: d3.Selection<any, any, null, undefined> | undefined;
createLabels(json: any): void;
componentDidUpdate(prevProps: any, prevState: any, snapshot: any): void;
}
import * as d3 from 'd3';