@loaders.gl/json
Version:
Framework-independent loader for JSON and streaming JSON formats
26 lines (19 loc) • 987 B
text/typescript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
export type {JSONLoaderOptions} from './json-loader';
export {JSONLoader} from './json-loader';
export {NDJSONLoader} from './ndjson-loader';
export type {JSONWriterOptions} from './json-writer';
export {JSONWriter} from './json-writer';
// EXPERIMENTAL EXPORTS - WARNING: MAY BE REMOVED WIHTOUT NOTICE IN FUTURE RELEASES
export type {GeoJSONLoaderOptions as _GeoJSONLoaderOptions} from './geojson-loader';
export {
GeoJSONLoader as _GeoJSONLoader,
GeoJSONWorkerLoader as _GeoJSONWorkerLoader
} from './geojson-loader';
export type {GeoJSONWriterOptions as _GeoJSONWriterOptions} from './geojson-writer';
export {GeoJSONWriter as _GeoJSONWriter} from './geojson-writer';
export {default as _JSONPath} from './lib/jsonpath/jsonpath';
export {default as _ClarinetParser} from './lib/clarinet/clarinet';
export {rebuildJsonObject as _rebuildJsonObject} from './lib/parsers/parse-json-in-batches';