Skip to content

Commit

Permalink
Minor TypeScript definition tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jun 7, 2019
1 parent 64c21e6 commit 16d15d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ declare namespace QuickLRU {
}
}

declare class QuickLRU<KeyType extends unknown, ValueType extends unknown>
declare class QuickLRU<KeyType, ValueType>
implements Iterable<[KeyType, ValueType]> {
/**
The stored item count.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"buffer"
],
"devDependencies": {
"ava": "^1.4.1",
"ava": "^2.0.0",
"coveralls": "^3.0.3",
"nyc": "^14.1.1",
"tsd": "^0.7.2",
Expand Down

0 comments on commit 16d15d4

Please sign in to comment.