kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
14 lines (13 loc) • 626 B
TypeScript
import React from 'react';
import NotificationItemFactory from './notification-panel/notification-item';
import { Notifications } from '@kepler.gl/types';
import { removeNotification } from '@kepler.gl/actions';
interface NotificationPanelProps {
removeNotification?: typeof removeNotification;
notifications: Notifications[];
}
declare function NotificationPanelFactory(NotificationItem: ReturnType<typeof NotificationItemFactory>): React.ComponentClass<NotificationPanelProps>;
declare namespace NotificationPanelFactory {
var deps: (typeof NotificationItemFactory)[];
}
export default NotificationPanelFactory;