max-priority-queue-typed 1.33.7 → 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": "max-priority-queue-typed",
3
- "version": "1.33.7",
3
+ "version": "1.34.1",
4
4
  "description": "Max Priority Queue. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -107,7 +107,7 @@
107
107
  "bugs": {
108
108
  "url": "https://github.com/zrwusa/data-structure-typed/issues"
109
109
  },
110
- "homepage": "https://github.com/zrwusa/data-structure-typed#readme",
110
+ "homepage": "https://data-structure-typed-docs.vercel.app",
111
111
  "types": "dist/index.d.ts",
112
112
  "devDependencies": {
113
113
  "@types/jest": "^29.5.3",
@@ -126,6 +126,6 @@
126
126
  "typescript": "^4.9.5"
127
127
  },
128
128
  "dependencies": {
129
- "data-structure-typed": "^1.33.7"
129
+ "data-structure-typed": "^1.34.1"
130
130
  }
131
131
  }
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 { MaxPriorityQueue } from 'data-structure-typed';