cspell-trie-lib 5.19.0 → 5.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
export declare function memorizer<
|
|
2
|
-
export declare function memorizer<T, K0, K1, K2, K3>(fn: (...p: [K0, K1, K2, K3]) => T): (...p: [K0, K1, K2, K3]) => T;
|
|
3
|
-
export declare function memorizer<T, K0, K1, K2>(fn: (...p: [K0, K1, K2]) => T): (...p: [K0, K1, K2]) => T;
|
|
4
|
-
export declare function memorizer<T, K0, K1>(fn: (...p: [K0, K1]) => T): (...p: [K0, K1]) => T;
|
|
5
|
-
export declare function memorizer<T, K0>(fn: (...p: [K0]) => T): (...p: [K0]) => T;
|
|
1
|
+
export declare function memorizer<K extends any[], T>(fn: (...p: K) => T): (...p: K) => T;
|
|
6
2
|
//# sourceMappingURL=memorizer.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-trie-lib",
|
|
3
|
-
"version": "5.19.
|
|
3
|
+
"version": "5.19.3",
|
|
4
4
|
"description": "Trie Data Structure to support cspell.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@cspell/cspell-pipe": "^5.19.
|
|
40
|
+
"@cspell/cspell-pipe": "^5.19.3",
|
|
41
41
|
"fs-extra": "^10.0.1",
|
|
42
42
|
"gensequence": "^3.1.1"
|
|
43
43
|
},
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"node": ">=12.13.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@cspell/cspell-types": "^5.19.
|
|
49
|
-
"@cspell/dict-en_us": "^2.
|
|
48
|
+
"@cspell/cspell-types": "^5.19.3",
|
|
49
|
+
"@cspell/dict-en_us": "^2.2.0",
|
|
50
50
|
"@cspell/dict-es-es": "^2.1.0",
|
|
51
51
|
"@types/fs-extra": "^9.0.13",
|
|
52
|
-
"@types/node": "^17.0.
|
|
52
|
+
"@types/node": "^17.0.22",
|
|
53
53
|
"jest": "^27.5.1",
|
|
54
54
|
"rimraf": "^3.0.2"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "df43735d8f85fddbbd0befca7d98956f50474ce7"
|
|
57
57
|
}
|