UNPKG

kepler.gl

Version:

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

13 lines (12 loc) 403 B
import { ColumnLayer, ColumnLayerProps } from '@deck.gl/layers/typed'; declare type EnhancedColumnLayerProps = ColumnLayerProps<any> & { strokeOpacity: any; }; declare class EnhancedColumnLayer extends ColumnLayer<any, EnhancedColumnLayerProps> { getShaders(): any; initializeState(): void; draw({ uniforms }: { uniforms: any; }): void; } export default EnhancedColumnLayer;