@idetik/core 0.7.1 → 0.7.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
@@ -1,9 +1,7 @@
1
1
  import * as gl_matrix from 'gl-matrix';
2
2
  import { vec3, mat4, quat, vec4, vec2 } from 'gl-matrix';
3
- import { Camera as Camera$1 } from '@/objects/cameras/camera';
4
- import { Location } from '@zarrita/core';
5
- import { Readable } from '@zarrita/storage';
6
3
  import * as zarr from 'zarrita';
4
+ import { Location, Readable } from 'zarrita';
7
5
  import { z } from 'zod';
8
6
 
9
7
  type Point = {
@@ -890,7 +888,7 @@ declare class VolumeLayer extends Layer {
890
888
  private updateVolumeChunk;
891
889
  private releaseAndRemoveChunks;
892
890
  update(context?: RenderContext): void;
893
- reorderObjects(camera: Camera$1): void;
891
+ reorderObjects(camera: Camera): void;
894
892
  getUniforms(): Record<string, unknown>;
895
893
  }
896
894
 
@@ -1314,7 +1312,7 @@ type ZarrArrayParams = {
1314
1312
 
1315
1313
  type OmeZarrImageLoaderProps = {
1316
1314
  metadata: Image$1["ome"]["multiscales"][number];
1317
- arrays: zarr.Array<zarr.DataType, Readable>[];
1315
+ arrays: zarr.Array<zarr.DataType, zarr.Readable>[];
1318
1316
  arrayParams: ZarrArrayParams[];
1319
1317
  };
1320
1318
  declare class OmeZarrImageLoader {