Skip to content

Commit

Permalink
fix(Typescript): LRUCache definition
Browse files Browse the repository at this point in the history
  • Loading branch information
noclat authored and gr2m committed Mar 16, 2019
1 parent 05bb700 commit 4cca5cb
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,10 +1,10 @@
import LRU = require("lru-cache");
import LRUCache = require("lru-cache");

declare interface AppOptions {
id: string
privateKey: string
baseUrl?: string
cache?: LRU.Cache<string, string>
cache?: LRUCache<string, string>
}

declare interface getInstallationAccessTokenOptions {
Expand Down

0 comments on commit 4cca5cb

Please sign in to comment.