@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) • 477 B
TypeScript
interface DataResponse {
[key: string]: any;
metadata: {
[key: string]: any;
};
itemSize: number;
children?: Record<string, DataResponse>[];
}
export declare const getCategories: ({ app, params }: {
app: string;
params?: Record<string, string>;
}) => Promise<unknown>;
export declare const getData: ({ source, app, params }: {
source: string;
app: string;
params?: Record<string, string>;
}) => Promise<DataResponse>;
export {};