Algorand TypeScript
    Preparing search index...

    Type Alias NumberRange

    Alias for a numeric range specification.

    type NumberRange = {
        from: number;
        to: number;
    }
    Index

    Properties

    Properties

    from: number

    The start point of the range (inclusive)

    to: number

    The end point of the range (inclusive)