itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
9 lines (8 loc) • 450 B
TypeScript
import Mesh from '../interface-types/mesh.js';
import WriteArrayBufferResult from './write-array-buffer-result.js';
import WriteMeshOptions from './write-mesh-options.js';
/**
* @deprecated Use writeMesh from @itk-wasm/mesh-io instead
*/
declare function writeMeshArrayBuffer(webWorker: Worker | null, mesh: Mesh, fileName: string, mimeType: string, options: WriteMeshOptions): Promise<WriteArrayBufferResult>;
export default writeMeshArrayBuffer;