@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;
    }
    Index

    Properties

    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.