min-priority-queue-typed 1.37.4 → 1.37.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 +3 -1
- package/dist/index.js +3 -1
- package/package.json +2 -2
- package/src/index.ts +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,4 +5,6 @@
|
|
|
5
5
|
* @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
|
|
6
6
|
* @license MIT License
|
|
7
7
|
*/
|
|
8
|
-
export * from 'data-structure-typed';
|
|
8
|
+
export * from 'data-structure-typed/src/data-structures/priority-queue/min-priority-queue';
|
|
9
|
+
export * from 'data-structure-typed/src/types/data-structures/priority-queue/min-priority-queue';
|
|
10
|
+
export * from 'data-structure-typed/src/types/helpers';
|
package/dist/index.js
CHANGED
|
@@ -22,4 +22,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
22
22
|
* @license MIT License
|
|
23
23
|
*/
|
|
24
24
|
// export { MinPriorityQueue } from 'data-structure-typed';
|
|
25
|
-
__exportStar(require("data-structure-typed"), exports);
|
|
25
|
+
__exportStar(require("data-structure-typed/src/data-structures/priority-queue/min-priority-queue"), exports);
|
|
26
|
+
__exportStar(require("data-structure-typed/src/types/data-structures/priority-queue/min-priority-queue"), exports);
|
|
27
|
+
__exportStar(require("data-structure-typed/src/types/helpers"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "min-priority-queue-typed",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.5",
|
|
4
4
|
"description": "Min Priority Queue. Javascript & Typescript Data Structure.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -124,6 +124,6 @@
|
|
|
124
124
|
"typescript": "^4.9.5"
|
|
125
125
|
},
|
|
126
126
|
"dependencies": {
|
|
127
|
-
"data-structure-typed": "^1.37.
|
|
127
|
+
"data-structure-typed": "^1.37.5"
|
|
128
128
|
}
|
|
129
129
|
}
|
package/src/index.ts
CHANGED
|
@@ -6,4 +6,6 @@
|
|
|
6
6
|
* @license MIT License
|
|
7
7
|
*/
|
|
8
8
|
// export { MinPriorityQueue } from 'data-structure-typed';
|
|
9
|
-
export * from 'data-structure-typed';
|
|
9
|
+
export * from 'data-structure-typed/src/data-structures/priority-queue/min-priority-queue';
|
|
10
|
+
export * from 'data-structure-typed/src/types/data-structures/priority-queue/min-priority-queue';
|
|
11
|
+
export * from 'data-structure-typed/src/types/helpers';
|