Files
Star-wars-card-game/node_modules/@redis/client/dist/lib/commands/FUNCTION_LOAD.d.ts
2026-01-28 00:55:06 +03:00

8 lines
273 B
TypeScript

import { RedisCommandArguments } from '.';
interface FunctionLoadOptions {
REPLACE?: boolean;
}
export declare function transformArguments(code: string, options?: FunctionLoadOptions): RedisCommandArguments;
export declare function transformReply(): string;
export {};