You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
403 B
11 lines
403 B
import { RedisJSON } from '.';
|
|
import { RedisCommandArgument } from '@redis/client/dist/lib/commands';
|
|
export declare const FIRST_KEY_INDEX = 1;
|
|
interface JsonMSetItem {
|
|
key: RedisCommandArgument;
|
|
path: RedisCommandArgument;
|
|
value: RedisJSON;
|
|
}
|
|
export declare function transformArguments(items: Array<JsonMSetItem>): Array<string>;
|
|
export declare function transformReply(): 'OK';
|
|
export {};
|
|
|