kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
18 lines (15 loc) • 310 B
text/typescript
// SPDX-License-Identifier: MIT
// Copyright contributors to the kepler.gl project
export type FileCacheItem = {
data: any;
info: {
id?: string;
label: string;
format: string;
};
};
export type ValidKeplerGlMap = {
datasets: unknown;
config: unknown;
info: Record<string, string>;
};