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

27 lines (26 loc) 934 B
import { RedisCommandArgument, RedisCommandArguments } from '.'; export declare function transformArguments(username: RedisCommandArgument): RedisCommandArguments; type AclGetUserRawReply = [ 'flags', Array<RedisCommandArgument>, 'passwords', Array<RedisCommandArgument>, 'commands', RedisCommandArgument, 'keys', Array<RedisCommandArgument> | RedisCommandArgument, 'channels', Array<RedisCommandArgument> | RedisCommandArgument, 'selectors' | undefined, Array<Array<string>> | undefined ]; interface AclUser { flags: Array<RedisCommandArgument>; passwords: Array<RedisCommandArgument>; commands: RedisCommandArgument; keys: Array<RedisCommandArgument> | RedisCommandArgument; channels: Array<RedisCommandArgument> | RedisCommandArgument; selectors?: Array<Array<string>>; } export declare function transformReply(reply: AclGetUserRawReply): AclUser; export {};