cspell-trie-lib
Advanced tools
Comparing version 5.0.1-alpha.12 to 5.0.1-alpha.13
export * from './trie'; | ||
export * from './TrieNode'; | ||
export { TrieNode, FLAG_WORD, ChildMap, TrieRoot } from './TrieNode'; | ||
export * from './util'; | ||
@@ -4,0 +4,0 @@ export * from './walker'; |
@@ -13,5 +13,7 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.parseDictionary = exports.parseDictionaryLines = exports.suggestionCollector = void 0; | ||
exports.parseDictionary = exports.parseDictionaryLines = exports.suggestionCollector = exports.ChildMap = exports.FLAG_WORD = void 0; | ||
__exportStar(require("./trie"), exports); | ||
__exportStar(require("./TrieNode"), exports); | ||
var TrieNode_1 = require("./TrieNode"); | ||
Object.defineProperty(exports, "FLAG_WORD", { enumerable: true, get: function () { return TrieNode_1.FLAG_WORD; } }); | ||
Object.defineProperty(exports, "ChildMap", { enumerable: true, get: function () { return TrieNode_1.ChildMap; } }); | ||
__exportStar(require("./util"), exports); | ||
@@ -18,0 +20,0 @@ __exportStar(require("./walker"), exports); |
import { Sequence } from 'gensequence'; | ||
import { TrieNode, TrieRoot, PartialTrieOptions, TrieOptions } from './TrieNode'; | ||
import { YieldResult } from './walker'; | ||
export { YieldResult } from './walker'; | ||
export declare function insert(text: string, node?: TrieNode): TrieNode; | ||
@@ -6,0 +5,0 @@ export declare function isWordTerminationNode(node: TrieNode): boolean; |
{ | ||
"name": "cspell-trie-lib", | ||
"version": "5.0.1-alpha.12", | ||
"version": "5.0.1-alpha.13", | ||
"description": "Trie Data Structure to support cspell.", | ||
@@ -43,9 +43,10 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@types/fs-extra": "^9.0.3", | ||
"@types/node": "^14.14.6", | ||
"cspell-dict-en_us": "^1.2.30", | ||
"cspell-dict-es-es": "^1.0.20", | ||
"@types/fs-extra": "^9.0.4", | ||
"@types/node": "^14.14.7", | ||
"cspell-dict-en_us": "^1.2.34", | ||
"cspell-dict-es-es": "^1.0.24", | ||
"jest": "^26.6.3", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"gitHead": "347018e778a780ecfb2754435c7cf665b3f9823c" | ||
"gitHead": "0e078dcab8c63536009126d41884265fdfe2ae63" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
110078
2787
6