Size record for one input or output file, surfaced from the converter result. fileDataSizeBytes is the byte length the ModelConverter measured at the I/O boundary; the reporter only reads it (it never touches the filesystem).

interface ModelConverterReportFile {
    fileDataSizeBytes: number;
    fileFormat: string;
    filePath?: string;
}

Properties

fileDataSizeBytes: number

Byte length of the file data.

fileFormat: string

Format id (loader/exporter) for this file.

filePath?: string

Path the data was read from / written to, when the conversion used one.