@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
16 lines (15 loc) • 388 B
TypeScript
import * as React from "react";
interface ITranslations {
[key: string]: string;
}
export declare const messagesMap: {
[locale: string]: ITranslations;
};
export interface IIntlWrapperProps {
locale: string;
}
export declare class IntlWrapper extends React.PureComponent<IIntlWrapperProps> {
static defaultProps: IIntlWrapperProps;
render(): JSX.Element;
}
export {};