Interface Batch<BatchOptionsExtension>

interface Batch<BatchOptionsExtension> {
    commit(options?): Await<void>;
    delete(key): void;
    put(key, value): void;
}

Type Parameters

  • BatchOptionsExtension = {}

Methods

Methods