1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/PUBLISH.ts
2021-11-16 21:14:47 -05:00

6 lines
181 B
TypeScript

export function transformArguments(channel: string, message: string): Array<string> {
return ['PUBLISH', channel, message];
}
export declare function transformReply(): number;