UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

17 lines (16 loc) 676 B
import React from 'react'; import { SetExportImageSettingUpdaterAction } from '@kepler.gl/actions'; import { ExportImage } from '@kepler.gl/constants'; import { IntlShape } from 'react-intl'; export interface ExportImageModalProps { exportImage: ExportImage; mapW: number; mapH: number; onUpdateImageSetting: (payload: SetExportImageSettingUpdaterAction['payload']) => void; cleanupExportImage: () => void; intl: IntlShape; } declare const ExportImageModalFactory: () => React.FC<import("react-intl").WithIntlProps<ExportImageModalProps>> & { WrappedComponent: React.ComponentType<ExportImageModalProps>; }; export default ExportImageModalFactory;