SheetXL - v0.3.20
    Preparing search index...

    Type Alias MinorTuple<T>

    MinorTuple: [minor: number, runs: IListLike<T>]

    Represents a pair of values: a numeric index represents the starting offset and an array of elements.

    This provides a convenient shorthand for scenarios where you need to associate a contiguous span of values with a specific index or position.

    Type Parameters

    • T = any

    The MinorTuple is types as an Array with 2 elements for performance reasons but can be logically conceptualized as the following type.

    type MinorTuple<T = any> = {
    minor: number;
    values: T[];
    };