Skip to content

Commit d42fd70

Browse files
authored
remove some (unnecessary) jsdoc
1 parent 142dfb4 commit d42fd70

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

packages/client/lib/commands/HEXPIRE.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
11
import { Command, RedisArgument } from '../RESP/types';
22
import { pushVariadicArgument } from './generic-transformers';
33

4-
/**
5-
* @readonly
6-
* @enum {number}
7-
*/
84
export const HASH_EXPIRATION = {
9-
/** @property {number} */
105
/** The field does not exist */
116
FIELD_NOT_EXISTS: -2,
12-
/** @property {number} */
137
/** Specified NX | XX | GT | LT condition not met */
148
CONDITION_NOT_MET: 0,
15-
/** @property {number} */
169
/** Expiration time was set or updated */
1710
UPDATED: 1,
18-
/** @property {number} */
1911
/** Field deleted because the specified expiration time is in the past */
2012
DELETED: 2
2113
} as const;

packages/client/lib/commands/HEXPIRETIME.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ import { ArrayReply, Command, NumberReply, RedisArgument } from '../RESP/types';
22
import { pushVariadicArgument, RedisVariadicArgument } from './generic-transformers';
33

44
export const HASH_EXPIRATION_TIME = {
5-
/** @property {number} */
65
/** The field does not exist */
76
FIELD_NOT_EXISTS: -2,
8-
/** @property {number} */
97
/** The field exists but has no associated expire */
108
NO_EXPIRATION: -1,
119
} as const;

0 commit comments

Comments
 (0)