Interface ZarrVariableMetadataExperimental

interface ZarrVariableMetadata {
    chunks: readonly number[];
    compressor: null | string;
    dataType: string;
    dimensionNames: readonly string[];
    name: string;
    shape: readonly number[];
}

Properties

chunks: readonly number[]
compressor: null | string
dataType: string
dimensionNames: readonly string[]
name: string
shape: readonly number[]