@jsfkit/types
    Preparing search index...

    Type Alias ExternalWorksheet

    A simple container sheet for cell values within an external workbook.

    type ExternalWorksheet = {
        cells: Record<CellId, Cell>;
        name: string;
        refreshError?: boolean;
    }
    Index

    Properties

    cells: Record<CellId, Cell>

    The cells belonging to the worksheet that have any data attached.

    Typically, these will have only values attached, as external worksheet cells serve purely as inputs to formulas in other sheets.

    name: string

    Name of the worksheet.

    refreshError?: boolean

    Indicates that the sheet data could not be refreshed/fetched from the external workbook. In XLSX, this corresponds to the refreshError="1" attribute on sheetData.