kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
12 lines (11 loc) • 310 B
TypeScript
import React from 'react';
declare type LoadDataFooterProps = {
disabled?: boolean;
isLoading?: boolean;
onConfirm: () => void;
confirmText: string;
prependText?: string;
errorText?: string;
};
declare const LoadDataFooter: React.FC<LoadDataFooterProps>;
export default LoadDataFooter;