import { JsonCompatible, Mesh, WorkerPoolFunctionResult } from 'itk-wasm'; interface WasmReadMeshResult extends WorkerPoolFunctionResult { /** Whether the input could be read. If false, the output mesh is not valid. */ couldRead: JsonCompatible; /** Output mesh */ mesh: Mesh; } export default WasmReadMeshResult;