1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-17 19:41:06 +03:00

fix build

This commit is contained in:
leibale
2021-07-12 13:50:51 -04:00
parent e2ed932802
commit b855150009
5 changed files with 703 additions and 1082 deletions

View File

@@ -1,7 +1,7 @@
const symbol = Symbol('Command Options');
export type CommandOptions<T> = T & {
readonly [symbol]: true
readonly [symbol]: true;
};
export function commandOptions<T>(options: T): CommandOptions<T> {