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