npm package diff
Package: @forge/cache
Versions: 1.0.3-next.0-experimental-ab129b0-experimental-3bf9516 - 1.0.3-next.0-experimental-47556b0
File: package/out/kvs/kvs.d.ts
Index: package/out/kvs/kvs.d.ts
===================================================================
--- package/out/kvs/kvs.d.ts
+++ package/out/kvs/kvs.d.ts
@@ -1,18 +0,0 @@
-import { KvsEntity, Kvs } from './interfaces/kvs';
-import { QueryBuilder } from './interfaces/query';
-import { TransactionBuilder } from './interfaces/transaction';
-import { StorageApi } from './storage-api';
-export declare class KvsImpl implements Kvs {
- private readonly storageApi;
- constructor(storageApi: StorageApi);
- get<T>(key: string): Promise<T | undefined>;
- set<T>(key: string, value: T): Promise<void>;
- delete(key: string): Promise<void>;
- query(): QueryBuilder;
- getSecret<T>(key: string): Promise<T | undefined>;
- setSecret<T>(key: string, value: T): Promise<void>;
- deleteSecret(key: string): Promise<void>;
- entity<T>(entityName: string): KvsEntity<T>;
- transact(): TransactionBuilder;
-}
-//# sourceMappingURL=kvs.d.ts.map
\ No newline at end of file