@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.
24 lines (23 loc) • 608 B
TypeScript
export { default as IntlProvider } from './providers/IntlProvider';
export { default as Provider } from './providers/Provider';
export declare const UPDATE = "@@intl/UPDATE";
export declare const updateIntl: ({ locale, formats, messages }: {
locale: any;
formats: any;
messages: any;
}) => {
type: string;
payload: {
locale: any;
formats: any;
messages: any;
};
};
export declare const initialState: {
locale: string;
messages: {};
};
export declare function intlReducer(state: {
locale: string;
messages: {};
} | undefined, action: any): any;