SheetXL - v0.3.20
    Preparing search index...

    Type Alias RangesAddress

    RangesAddress: ICellRanges | string | ICellRange.Address | ICellRange.Address[]

    Represents the different ways to identify multiple ranges within a sheet.

    Accepts:

    • ICellRanges
    • A parsable string containing multiple range addresses separated by commas (e.g., "A1:B2,C3:D4").
    • An array of ICellRange.Address objects, each representing a single range.
    const address1: ICellRanges.Address = "A1:B2,C3:D4"; // String with multiple ranges.
    

    This extends ICellRange.Address to support multiple values.