@zenweb/cache 4.1.0 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/dist/utils.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/utils.d.ts
CHANGED
|
@@ -21,4 +21,4 @@ export declare function runRedisScript(redis: Redis, hash: string, script: strin
|
|
|
21
21
|
* 生成一个参数缓存key
|
|
22
22
|
* - 多个元素用 : 连接
|
|
23
23
|
*/
|
|
24
|
-
export declare function normalKey(...key: (string | object)[]): string;
|
|
24
|
+
export declare function normalKey(...key: (string | number | object)[]): string;
|