import { JsonCompatible, Mesh } from 'itk-wasm'; interface WasmZtdReadMeshResult { /** WebWorker used for computation */ webWorker: Worker | null; /** Whether the input could be read. If false, the output mesh is not valid. */ couldRead: JsonCompatible; /** Output mesh */ mesh: Mesh; } export default WasmZtdReadMeshResult;