@stacksjs/cache 0.65.0 → 0.67.0
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/dist/drivers/dynamodb.d.ts +1 -1
- package/dist/drivers/filesystem.d.ts +1 -1
- package/dist/drivers/index.d.ts +1 -1
- package/dist/drivers/memory.d.ts +1 -1
- package/dist/drivers/redis.d.ts +1 -1
- package/dist/index.js +161 -164
- package/package.json +4 -6
- package/dist/drivers/type.d.ts +0 -16
- package/dist/index.js.map +0 -571
- package/src/drivers/dynamodb.ts +0 -80
- package/src/drivers/filesystem.ts +0 -66
- package/src/drivers/index.ts +0 -29
- package/src/drivers/memory.ts +0 -66
- package/src/drivers/redis.ts +0 -65
- package/src/drivers/type.ts +0 -17
- package/src/index.ts +0 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { CacheDriver } from "
|
|
1
|
+
import type { CacheDriver } from "@stacksjs/types";
|
|
2
2
|
export declare const dynamodb: CacheDriver;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { CacheDriver } from "
|
|
1
|
+
import type { CacheDriver } from "@stacksjs/types";
|
|
2
2
|
export declare const fileSystem: CacheDriver;
|
package/dist/drivers/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { CacheDriver } from "
|
|
1
|
+
import type { CacheDriver } from "@stacksjs/types";
|
|
2
2
|
export declare const cache: CacheDriver;
|
package/dist/drivers/memory.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { CacheDriver } from "
|
|
1
|
+
import type { CacheDriver } from "@stacksjs/types";
|
|
2
2
|
export declare const memory: CacheDriver;
|
package/dist/drivers/redis.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { CacheDriver } from "
|
|
1
|
+
import type { CacheDriver } from "@stacksjs/types";
|
|
2
2
|
export declare const redis: CacheDriver;
|