Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit b42eeea

Browse files
author
Josh Goldberg
committed
Bumped all to latest
1 parent f52a442 commit b42eeea

4 files changed

Lines changed: 10 additions & 11 deletions

File tree

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"bugs": {
88
"url": "https://github.com/FullScreenShenanigans/StringFilr/issues"
99
},
10-
"dependencies": {
11-
},
10+
"dependencies": {},
1211
"description": "A path-based cache for quick lookups in nested data structures.",
1312
"devDependencies": {
1413
"@types/chai": "^4.1.7",
@@ -84,4 +83,4 @@
8483
},
8584
"types": "./src/index.d.ts",
8685
"version": "0.7.4"
87-
}
86+
}

src/IStringFilr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface IStringFilr<T> {
4848
/**
4949
* @returns The complete cache of previously completed lookups.
5050
*/
51-
getCache(): ICache<T>;
51+
getCache(): ICache<T | ILibrary<T>>;
5252

5353
/**
5454
* @returns A cached value, if it exists.

src/StringFilr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class StringFilr<T> implements IStringFilr<T> {
1919
/**
2020
* Previously completed lookups.
2121
*/
22-
private cache: ICache<T | ILibrary<T>>;
22+
private cache: ICache<T>;
2323

2424
/**
2525
* Initializes a new instance of the StringFilr class.

0 commit comments

Comments
 (0)