Constructors
Properties
Methods
batch
- batch(operations, options?): Promise<void>
Returns Promise<void>
clear
- clear(): Promise<void>
Returns Promise<void>
close
- close(): Promise<void>
Returns Promise<void>
delete
- delete(key, options?): Promise<void>
Returns Promise<void>
get
- get(key, options?): Promise<undefined | V>
Returns Promise<undefined | V>
has
- has(key, options?): Promise<boolean>
Returns Promise<boolean>
isEmpty
- isEmpty(options?): Promise<boolean>
Returns Promise<boolean>
iterator
- iterator(iteratorOptions?, options?): AsyncGenerator<[string, V], any, any>
Returns AsyncGenerator<[string, V], any, any>
keys
- keys(options?): AsyncGenerator<string, any, any>
Returns AsyncGenerator<string, any, any>
open
- open(): Promise<void>
Returns Promise<void>
put
- put(key, value, options?): Promise<void>
Returns Promise<void>
Wraps the given LevelWrapperBatchOperation as an operation for the specified partition.