IDBKeyRange: {
    prototype: IDBKeyRange;
    bound(
        lower: any,
        upper: any,
        lowerOpen?: boolean,
        upperOpen?: boolean,
    ): IDBKeyRange;
    lowerBound(lower: any, open?: boolean): IDBKeyRange;
    only(value: any): IDBKeyRange;
    upperBound(upper: any, open?: boolean): IDBKeyRange;
    new (): IDBKeyRange;
}

Type Declaration

  • prototype: IDBKeyRange
  • bound: function
    • The bound() static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds.

      MDN Reference

      Parameters

      • lower: any
      • upper: any
      • OptionallowerOpen: boolean
      • OptionalupperOpen: boolean

      Returns IDBKeyRange

  • lowerBound: function
    • The lowerBound() static method of the By default, it includes the lower endpoint value and is closed.

      MDN Reference

      Parameters

      • lower: any
      • Optionalopen: boolean

      Returns IDBKeyRange

  • only: function
    • The only() static method of the IDBKeyRange interface creates a new key range containing a single value.

      MDN Reference

      Parameters

      • value: any

      Returns IDBKeyRange

  • upperBound: function
    • The upperBound() static method of the it includes the upper endpoint value and is closed.

      MDN Reference

      Parameters

      • upper: any
      • Optionalopen: boolean

      Returns IDBKeyRange