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) • 394 B
text/typescript
// @ts-nocheck
import ReadMeshResult from './read-mesh-result.js'
/**
* @deprecated Use readMeshBlob from @itk-wasm/mesh-io instead
*/
async function readMeshBlob (webWorker: Worker | null, blob: Blob, fileName: string, mimeType: string): Promise<ReadMeshResult> {
throw new Error('readMeshBlob is deprecated. Use readMesh from @itk-wasm/mesh-io instead.')
}
export default readMeshBlob