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) • 342 B
text/typescript
// @ts-nocheck
import Mesh from '../interface-types/mesh.js'
/**
* @deprecated Use readMeshNode from @itk-wasm/mesh-io instead
*/
async function readMeshLocalFile (filePath: string): Promise<Mesh> {
throw new Error('readMeshLocalFile is deprecated. Use readMeshNode from @itk-wasm/mesh-io instead.')
}
export default readMeshLocalFile