@idetik/core 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -133,19 +133,10 @@ type SliceCoordinates = {
133
133
  type ChunkSource = {
134
134
  open(): Promise<ChunkLoader>;
135
135
  };
136
- type LoaderAttributes = {
137
- dimensionNames: string[];
138
- dimensionUnits: (string | undefined)[];
139
- chunks: readonly number[];
140
- shape: readonly number[];
141
- scale: readonly number[];
142
- translation: readonly number[];
143
- };
144
136
  type ChunkLoader = {
145
137
  loadRegion(input: Region, lod: number, scheduler?: PromiseScheduler): Promise<Chunk>;
146
138
  getSourceDimensionMap(): SourceDimensionMap;
147
139
  loadChunkData(chunk: Chunk, signal: AbortSignal): Promise<void>;
148
- getAttributes(): ReadonlyArray<LoaderAttributes>;
149
140
  };
150
141
 
151
142
  declare class ChunkStore {
@@ -1270,14 +1261,12 @@ declare class OmeZarrImageLoader {
1270
1261
  private readonly metadata_;
1271
1262
  private readonly arrays_;
1272
1263
  private readonly arrayParams_;
1273
- private readonly loaderAttributes_;
1274
1264
  private readonly dimensions_;
1275
1265
  constructor(props: OmeZarrImageLoaderProps);
1276
1266
  getSourceDimensionMap(): SourceDimensionMap;
1277
1267
  loadChunkData(chunk: Chunk, signal: AbortSignal): Promise<void>;
1278
1268
  private trimChunkPadding;
1279
1269
  loadRegion(region: Region, lod: number, scheduler?: PromiseScheduler): Promise<Chunk>;
1280
- getAttributes(): ReadonlyArray<LoaderAttributes>;
1281
1270
  private regionToIndices;
1282
1271
  }
1283
1272