Skip to content

Instantly share code, notes, and snippets.

@qingant
Created March 25, 2020 16:59
Show Gist options
  • Save qingant/925e019f8767fb4e5ce296ecd93a552b to your computer and use it in GitHub Desktop.
Save qingant/925e019f8767fb4e5ce296ecd93a552b to your computer and use it in GitHub Desktop.
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