itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
13 lines (9 loc) • 409 B
text/typescript
// @ts-nocheck
import ReadDICOMTagsResult from './read-dicom-tags-result.js'
/**
* @deprecated Use readDicomTags from @itk-wasm/dicom instead
*/
async function readDICOMTags (webWorker: Worker | null, file: File, tags: string[] | null = null): Promise<ReadDICOMTagsResult> {
throw new Error('readDICOMTags is deprecated. Use readDicomTags from @itk-wasm/dicom instead.')
}
export default readDICOMTags