deque-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": "deque-typed",
3
- "version": "1.33.8",
3
+ "version": "1.34.1",
4
4
  "description": "Deque. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -99,7 +99,7 @@
99
99
  "bugs": {
100
100
  "url": "https://github.com/zrwusa/data-structure-typed/issues"
101
101
  },
102
- "homepage": "https://github.com/zrwusa/data-structure-typed#readme",
102
+ "homepage": "https://data-structure-typed-docs.vercel.app",
103
103
  "types": "dist/index.d.ts",
104
104
  "devDependencies": {
105
105
  "@types/jest": "^29.5.3",
@@ -118,6 +118,6 @@
118
118
  "typescript": "^4.9.5"
119
119
  },
120
120
  "dependencies": {
121
- "data-structure-typed": "^1.33.8"
121
+ "data-structure-typed": "^1.34.1"
122
122
  }
123
123
  }
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 { Deque, ObjectDeque, ArrayDeque } from 'data-structure-typed';