UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

18 lines (17 loc) 397 B
import { RedisCommandArguments } from '.'; export declare function transformArguments(): RedisCommandArguments; type RawReply = [ 'flags', Array<string>, 'redirect', number, 'prefixes', Array<string> ]; interface Reply { flags: Set<string>; redirect: number; prefixes: Array<string>; } export declare function transformReply(reply: RawReply): Reply; export {};