Created
March 25, 2020 16:59
-
-
Save qingant/925e019f8767fb4e5ce296ecd93a552b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type RedisString = string; | |
type RedisBulkString = string; | |
type RedisNumber = number; | |
type RedisArray = RedisValue[]; | |
type RedisNil = 'nil'; | |
type RedisError = string; | |
type RedisValue = RedisString|RedisBulkString|RedisNumber|RedisArray|RedisNil|RedisError; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment