FUNCTION_LOAD.d.ts 273 B

1234567
  1. import { RedisCommandArguments } from '.';
  2. interface FunctionLoadOptions {
  3. REPLACE?: boolean;
  4. }
  5. export declare function transformArguments(code: string, options?: FunctionLoadOptions): RedisCommandArguments;
  6. export declare function transformReply(): string;
  7. export {};