koatty_store
Advanced tools
Comparing version 1.3.3 to 1.4.0
import { MemoryStore } from "./memory"; | ||
import { RedisStore } from "./redis"; | ||
export { RedisStore, RedisClient, RedisStoreOptions } from "./redis"; | ||
export { RedisStore, RedisStoreOptions } from "./redis"; | ||
export { MemoryStore, MemoryStoreOptions } from "./memory"; | ||
/** | ||
@@ -5,0 +6,0 @@ * |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Store = exports.RedisStore = void 0; | ||
exports.Store = exports.MemoryStore = exports.RedisStore = void 0; | ||
/* | ||
* @Author: richen | ||
* @Date: 2020-11-30 11:48:12 | ||
* @LastEditors: Please set LastEditors | ||
* @LastEditTime: 2021-06-30 16:16:16 | ||
* @License: BSD (3-Clause) | ||
* @Copyright (c) - <richenlin(at)gmail.com> | ||
*/ | ||
const memory_1 = require("./memory"); | ||
@@ -8,2 +16,4 @@ const redis_1 = require("./redis"); | ||
Object.defineProperty(exports, "RedisStore", { enumerable: true, get: function () { return redis_2.RedisStore; } }); | ||
var memory_2 = require("./memory"); | ||
Object.defineProperty(exports, "MemoryStore", { enumerable: true, get: function () { return memory_2.MemoryStore; } }); | ||
/** | ||
@@ -10,0 +20,0 @@ * |
import { CacheStore, StoreOptions } from "."; | ||
/** | ||
* MemoryStore Options | ||
* | ||
* | ||
* @export | ||
@@ -6,0 +6,0 @@ * @interface MemoryStoreOptions |
@@ -6,11 +6,2 @@ import IORedis from "ioredis"; | ||
* | ||
* @export | ||
* @interface RedisClient | ||
* @extends {IORedis.Redis} | ||
*/ | ||
export interface RedisClient extends IORedis.Redis { | ||
} | ||
/** | ||
* | ||
* | ||
* @interface RedisStoreOptions | ||
@@ -17,0 +8,0 @@ */ |
@@ -9,3 +9,3 @@ "use strict"; | ||
* @LastEditors: Please set LastEditors | ||
* @LastEditTime: 2021-06-30 15:21:06 | ||
* @LastEditTime: 2021-06-30 16:14:58 | ||
* @License: BSD (3-Clause) | ||
@@ -12,0 +12,0 @@ * @Copyright (c) - <richenlin(at)gmail.com> |
{ | ||
"name": "koatty_store", | ||
"version": "1.3.3", | ||
"version": "1.4.0", | ||
"description": "Cache store for koatty.", | ||
@@ -87,2 +87,2 @@ "scripts": { | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2111404
1356