| 21 | | (string | Buffer | number | any[])[]; |
| 22 | |
| 23 | interface CommandOptions { |
| 24 | /** |
| 25 | * Set the encoding of the reply, by default buffer will be returned. |
| 26 | */ |
| 27 | replyEncoding?: BufferEncoding | null; |
| 28 | errorStack?: Error; |
| 29 | keyPrefix?: string; |
| 30 | /** |
| 31 | * Force the command to be readOnly so it will also execute on slaves |
| 32 | */ |
| 33 | readOnly?: boolean; |
| 34 | } |
| 35 | |
| 36 | type ArgumentTransformer = (args: any[]) => any[]; |
| 37 | type ReplyTransformer = (reply: any) => any; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…