bound static method
The bound()
static method of the IDBKeyRange
interface creates a new key range with the specified upper and lower
bounds. The
bounds can be open (that is, the bounds exclude the endpoint values) or
closed (that
is, the bounds include the endpoint values). By default, the bounds are
closed.
Implementation
external static IDBKeyRange bound(
JSAny? lower,
JSAny? upper, [
bool lowerOpen,
bool upperOpen,
]);