@keyv/postgres
Advanced tools
Comparing version 1.3.1 to 1.3.2
{ | ||
"name": "@keyv/postgres", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "PostgreSQL storage adapter for Keyv", | ||
@@ -72,4 +72,4 @@ "main": "src/index.js", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.8.3", | ||
"xo": "^0.52.3" | ||
"typescript": "^4.8.4", | ||
"xo": "^0.52.4" | ||
}, | ||
@@ -76,0 +76,0 @@ "tsd": { |
@@ -6,3 +6,3 @@ /* eslint-disable @typescript-eslint/consistent-type-definitions */ | ||
export = KeyvPostgres; | ||
declare class KeyvPostgres extends EventEmitter implements Store<Value> { | ||
declare class KeyvPostgres<Value=any> extends EventEmitter implements Store<Value> { | ||
readonly ttlSupport: false; | ||
@@ -9,0 +9,0 @@ opts: any; |
8188