A single sheet within a workbook.

cells is keyed by A1 string (see cellRefToA1) and is sparse: only cells with non-empty values are stored.

interface Sheet {
    cells: ReadonlyMap<string, Cell>;
    id: string;
}

Properties

Properties

cells: ReadonlyMap<string, Cell>

Sparse — only cells with non-empty values are present.

id: string