Column-oriented spreadsheet interface.

interface Spreadsheet {
    activeSheets(): readonly string[];
    readColumns(rgs): readonly Columns[];
    updateColumns(patches): void;
}

Implemented by

Methods