Files
module4_backend_project/node_modules/@redis/json/dist/commands/GET.d.ts
T

13 lines
470 B
TypeScript
Raw Normal View History

2025-02-11 15:06:41 +01:00
import { RedisCommandArguments } from '@redis/client/dist/lib/commands';
export declare const FIRST_KEY_INDEX = 1;
export declare const IS_READ_ONLY = true;
interface GetOptions {
path?: string | Array<string>;
INDENT?: string;
NEWLINE?: string;
SPACE?: string;
NOESCAPE?: true;
}
export declare function transformArguments(key: string, options?: GetOptions): RedisCommandArguments;
export { transformRedisJsonNullReply as transformReply } from '.';