itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
8 lines (7 loc) • 319 B
TypeScript
import WriteMeshOptions from './write-mesh-options.js';
import Mesh from '../interface-types/mesh.js';
/**
* @deprecated Use writeMeshNode from @itk-wasm/mesh-io instead
*/
declare function writeMeshLocalFile(mesh: Mesh, filePath: string, options: WriteMeshOptions): Promise<null>;
export default writeMeshLocalFile;