LINSERT.d.ts 392 B

123456
  1. import { RedisCommandArgument, RedisCommandArguments } from '.';
  2. export declare const FIRST_KEY_INDEX = 1;
  3. type LInsertPosition = 'BEFORE' | 'AFTER';
  4. export declare function transformArguments(key: RedisCommandArgument, position: LInsertPosition, pivot: RedisCommandArgument, element: RedisCommandArgument): RedisCommandArguments;
  5. export declare function transformReply(): number;
  6. export {};