@cashu/cashu-ts
    Preparing search index...

    Interface CounterRange

    Usable counters in range is [start, start+count-1]

    // Start: 5, count: 3 => 5,6,7.
    
    interface CounterRange {
        count: number;
        start: number;
    }
    Index

    Properties

    Properties

    count: number
    start: number