itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
15 lines (10 loc) • 442 B
text/typescript
// @ts-nocheck
import WriteMeshOptions from './write-mesh-options.js'
import Mesh from '../interface-types/mesh.js'
/**
* @deprecated Use writeMeshNode from @itk-wasm/mesh-io instead
*/
async function writeMeshLocalFile (mesh: Mesh, filePath: string, options: WriteMeshOptions): Promise<null> {
throw new Error('writeMeshLocalFile is deprecated. Use writeMeshNode from @itk-wasm/mesh-io instead.')
}
export default writeMeshLocalFile