@loaders.gl/zarr
Version:
Framework-independent loaders for Zarr
11 lines • 384 B
TypeScript
import type { Store } from 'zarr/types/storage/types';
import ZarrPixelSource from "./zarr-pixel-source.js";
interface ZarrOptions {
labels?: string[];
}
export declare function loadZarr(root: string | Store, options?: ZarrOptions): Promise<{
data: ZarrPixelSource<string[]>[];
metadata: import("../types").RootAttrs;
}>;
export {};
//# sourceMappingURL=load-zarr.d.ts.map