devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
10 lines (9 loc) • 388 B
TypeScript
import { AILanguageInfo } from 'devexpress-reporting/dx-webdocumentviewer';
import { FunctionComponent } from 'react';
type TranslationSettingsPropsType = {
translationEnabled?: boolean;
inlineTranslationEnabled?: boolean;
languages?: AILanguageInfo[];
};
declare const TranslationSettings: FunctionComponent<TranslationSettingsPropsType>;
export default TranslationSettings;