We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23e928a commit ee9c32aCopy full SHA for ee9c32a
packages/zarrita/src/consolidated.ts
@@ -70,8 +70,14 @@ function is_v3(meta: Metadata): meta is ArrayMetadata | GroupMetadata {
70
return "zarr_format" in meta && meta.zarr_format === 3;
71
}
72
73
-interface WithConsolidatedOptions {
74
- metadataKey?: string;
+/** Options for {@linkcode withConsolidated} and {@linkcode tryWithConsolidated}. */
+export interface WithConsolidatedOptions {
75
+ /**
76
+ * Key to read consolidated metadata from.
77
+ *
78
+ * @default {".zmetadata"}
79
+ */
80
+ readonly metadataKey?: string;
81
82
83
/**
0 commit comments