/home/techb158/balavpn.abdallabala.com/node_modules/ioredis/built/utils
NameSizeModeActions
applyMixin.d.ts1830666editdlrm
applyMixin.js3900666editdlrm
argumentParsers.d.ts8100666editdlrm
argumentParsers.js24670666editdlrm
Commander.d.ts12520666editdlrm
Commander.js44260666editdlrm
debug.d.ts6140666editdlrm
debug.js26360666editdlrm
defaults.d.ts6070666editdlrm
defaults.js37860666editdlrm
index.d.ts33290666editdlrm
index.js114520666editdlrm
isArguments.d.ts750666editdlrm
isArguments.js21580666editdlrm
lodash.d.ts970666editdlrm
lodash.js7480666editdlrm
RedisCommander.d.ts4630710666editdlrm
RedisCommander.js2270666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/ioredis/built/utils/argumentParsers.d.ts (810B)
import { CommandParameter } from "../types"; /** * Parses a command parameter as seconds and converts to milliseconds. * @param arg - The command parameter representing seconds * @returns The value in milliseconds, 0 if value is <= 0, or undefined if parsing fails */ export declare const parseSecondsArgument: (arg: CommandParameter | undefined) => number | undefined; /** * Parses the BLOCK option from Redis command arguments (e.g., XREAD, XREADGROUP). * @param args - Array of command parameters to search for the BLOCK option * @returns The block duration in milliseconds, 0 if duration is <= 0, * null if BLOCK option is not found, or undefined if BLOCK is found but duration is invalid */ export declare const parseBlockOption: (args: CommandParameter[]) => number | null | undefined;