cspell-trie-lib 9.1.3 → 9.1.5
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.
- package/dist/index.d.ts +0 -3
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -233,8 +233,6 @@ type WalkerIterator$1 = Generator<YieldResult$1, void, FalseToNotGoDeeper | unde
|
|
|
233
233
|
* goDeeper of true tells the walker to go deeper in the Trie if possible. Default is true.
|
|
234
234
|
* This can be used to limit the walker's depth.
|
|
235
235
|
*/
|
|
236
|
-
// next: (hinting?: Hinting) => IteratorResult<YieldResult>;
|
|
237
|
-
// [Symbol.iterator]: () => HintedWalkerIterator;
|
|
238
236
|
type HintedWalkerIterator = Generator<YieldResult, void, Hinting | undefined>;
|
|
239
237
|
declare function hintedWalker(root: TrieRoot, ignoreCase: boolean, hint: string, compoundingMethod: CompoundWordsMethod | undefined, emitWordSeparator?: string): HintedWalkerIterator;
|
|
240
238
|
/**
|
|
@@ -752,7 +750,6 @@ declare class TrieBuilder {
|
|
|
752
750
|
trieOptions: TrieOptions;
|
|
753
751
|
private numWords;
|
|
754
752
|
private _debug_lastWordsInserted;
|
|
755
|
-
// private _debug_mode = true;
|
|
756
753
|
private _debug_mode;
|
|
757
754
|
constructor(words?: Iterable<string>, trieOptions?: PartialTrieOptions);
|
|
758
755
|
private get _root();
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public",
|
|
5
5
|
"provenance": true
|
|
6
6
|
},
|
|
7
|
-
"version": "9.1.
|
|
7
|
+
"version": "9.1.5",
|
|
8
8
|
"description": "Trie Data Structure to support cspell.",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"sideEffects": false,
|
|
@@ -59,18 +59,18 @@
|
|
|
59
59
|
},
|
|
60
60
|
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-trie-lib#readme",
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@cspell/cspell-pipe": "9.1.
|
|
63
|
-
"@cspell/cspell-types": "9.1.
|
|
62
|
+
"@cspell/cspell-pipe": "9.1.5",
|
|
63
|
+
"@cspell/cspell-types": "9.1.5",
|
|
64
64
|
"gensequence": "^7.0.0"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=20"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@cspell/dict-en_us": "^4.4.
|
|
71
|
-
"@cspell/dict-es-es": "^3.0.
|
|
72
|
-
"@cspell/dict-nl-nl": "^2.4.
|
|
70
|
+
"@cspell/dict-en_us": "^4.4.14",
|
|
71
|
+
"@cspell/dict-es-es": "^3.0.5",
|
|
72
|
+
"@cspell/dict-nl-nl": "^2.4.1",
|
|
73
73
|
"import-meta-resolve": "^4.1.0"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "6303813cb5da37e88b3ccab7ce5bcf09373f5cf2"
|
|
76
76
|
}
|