Member Junction
    Preparing search index...

    Result of an export operation

    interface ExportResult {
        columnCount?: number;
        data?: Uint8Array;
        error?: string;
        fileName?: string;
        mimeType?: string;
        rowCount?: number;
        sheetCount?: number;
        sheetStats?: { columnCount: number; name: string; rowCount: number }[];
        sizeBytes?: number;
        success: boolean;
    }
    Index

    Properties

    columnCount?: number

    Number of columns exported

    data?: Uint8Array

    The exported data as a buffer/blob

    error?: string

    Error message if failed

    fileName?: string

    Suggested file name with extension

    mimeType?: string

    MIME type of the exported data

    rowCount?: number

    Number of rows exported (total across all sheets)

    sheetCount?: number

    Number of sheets (Excel only)

    sheetStats?: { columnCount: number; name: string; rowCount: number }[]

    Per-sheet statistics

    sizeBytes?: number

    File size in bytes

    success: boolean

    Whether the export succeeded