UNPKG

@cornerstonejs/core

Version:
11 lines (10 loc) 384 B
import { StreamingDynamicImageVolume } from '../cache/index.js'; interface IVolumeLoader { promise: Promise<StreamingDynamicImageVolume>; cancel: () => void; decache: () => void; } declare function cornerstoneStreamingDynamicImageVolumeLoader(volumeId: string, options: { imageIds: string[]; }): IVolumeLoader; export { cornerstoneStreamingDynamicImageVolumeLoader };