trie-typed 1.33.8 → 1.34.1

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/index.ts +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trie-typed",
3
- "version": "1.33.8",
3
+ "version": "1.34.1",
4
4
  "description": "Trie, Prefix tree. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -108,7 +108,7 @@
108
108
  "bugs": {
109
109
  "url": "https://github.com/zrwusa/data-structure-typed/issues"
110
110
  },
111
- "homepage": "https://github.com/zrwusa/data-structure-typed#readme",
111
+ "homepage": "https://data-structure-typed-docs.vercel.app",
112
112
  "types": "dist/index.d.ts",
113
113
  "devDependencies": {
114
114
  "@types/jest": "^29.5.3",
@@ -127,6 +127,6 @@
127
127
  "typescript": "^4.9.5"
128
128
  },
129
129
  "dependencies": {
130
- "data-structure-typed": "^1.33.8"
130
+ "data-structure-typed": "^1.34.1"
131
131
  }
132
132
  }
package/src/index.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * data-structure-typed
3
+ *
4
+ * @author Tyler Zeng
5
+ * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
6
+ * @license MIT License
7
+ */
8
+ export { TrieNode, Trie } from 'data-structure-typed';