Interface LevelDBOptions

interface LevelDBOptions {
    additionalMethods?: {
        approximateSize?: boolean;
        compactRange?: boolean;
    };
    bufferKeys?: boolean;
    clear?: boolean;
    createIfMissing?: boolean;
    errorIfExists?: boolean;
    permanence?: boolean;
    seek?: boolean;
    snapshots?: boolean;
}

Properties

additionalMethods?: { approximateSize?: boolean; compactRange?: boolean }
bufferKeys?: boolean
clear?: boolean
createIfMissing?: boolean
errorIfExists?: boolean
permanence?: boolean
seek?: boolean
snapshots?: boolean