/* tslint:disable */ /* eslint-disable */ /* auto-generated by NAPI-RS */ /** Get the deserialized value of a key */ export function get(key: string): Promise /** Get the deserialized values of a set of keys */ export function mget(keys: Array): Promise> /** Serialize and set the value at a key */ export function set(key: string, value?: any | undefined | null): Promise /** Serialize and set the value at a key if the current value hasn't changed. Returns count of modified keys. Requires that [redis-cas](https://github.com/Bajix/redis-cas) is loaded on Redis */ export function compareAndSwap(key: string, current: any, value?: any | undefined | null): Promise /** Serialize and set the values of multiple keys */ export function mset(data: Array<[string, any | undefined | null]>): Promise