IDBKeyRange
import { IDBKeyRange } from "https://raw.githubusercontent.com/aaronhuggins/indexeddb/main/ponyfill.ts";
A key range can be a single value or a range with upper and lower bounds or endpoints. If the key range has both upper and lower bounds, then it is bounded; if it has no bounds, it is unbounded. A bounded key range can either be open (the endpoints are excluded) or closed (the endpoints are included). To retrieve all keys within a certain range, you can use the following code constructs:
interface IDBKeyRange {
readonly lower: any;
readonly lowerOpen: boolean;
prototype: IDBKeyRange;
readonly upper: any;
readonly upperOpen: boolean;
includes(key: any): boolean;
new (): IDBKeyRange;
only(value: any): IDBKeyRange;
}const IDBKeyRange;
§Properties
§
prototype: IDBKeyRange
[src]§Methods
§
Returns a new IDBKeyRange spanning from lower to upper. If lowerOpen is true, lower is not included in the range. If upperOpen is true, upper is not included in the range.
§
Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
§
new (): IDBKeyRange
[src]§
only(value: any): IDBKeyRange
[src]Returns a new IDBKeyRange spanning only key.