UNPKG

@lunit/insight-viewer

Version:

Based on the cornerstone library, it provides several components for handling Dicom images

10 lines (9 loc) 301 B
import { HTTP, Loader } from '../../types'; import { ImageWithoutKey } from '../../Viewer/types'; export declare type Props = { imageId: string; } & Partial<HTTP>; export declare type GetImage = (arg: { imageId: string; loader: Loader | undefined; }) => Promise<ImageWithoutKey>;