@itk-wasm/image-io
Version:
Input and output for scientific and medical image file formats.
9 lines (8 loc) • 394 B
TypeScript
import { JsonCompatible, BinaryFile, WorkerPoolFunctionResult } from 'itk-wasm';
interface MetaWriteImageResult extends WorkerPoolFunctionResult {
/** Whether the input could be written. If false, the output image is not valid. */
couldWrite: JsonCompatible;
/** Output image serialized in the file format. */
serializedImage: BinaryFile;
}
export default MetaWriteImageResult;