Skip to content

Commit

Permalink
Fixing type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
chronosis committed Jul 1, 2024
1 parent 5bc7088 commit 0020015
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare module 'object-key-cache';

declare class ObjectKeyClass {
declare class ObjectKeyCache {
constructor(config: any, credentials: any, logger: any);
attachToClient(client: any): void;
detachFromClient(): void;
Expand Down Expand Up @@ -34,5 +34,5 @@ declare class ObjectKeyClass {
close(): Promise<any>;
}

declare let obj: ObjectKeyClass;
declare let obj: ObjectKeyCache;
export default obj;

0 comments on commit 0020015

Please sign in to comment.