isaacscript-common 1.2.272 → 1.2.273
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/constants.d.ts +2 -2
- package/package.json +2 -2
package/dist/constants.d.ts
CHANGED
|
@@ -120,9 +120,9 @@ export declare const UI_HEART_WIDTH = 12;
|
|
|
120
120
|
* This is a safer version of the `Vector.One` constant. (Other mods can mutate this vector, so it
|
|
121
121
|
* is not safe to use.)
|
|
122
122
|
*/
|
|
123
|
-
export declare const VectorOne:
|
|
123
|
+
export declare const VectorOne: Readonly<Vector>;
|
|
124
124
|
/**
|
|
125
125
|
* This is a safer version of the `Vector.Zero` constant. (Other mods can mutate this vector, so it
|
|
126
126
|
* is not safe to use.)
|
|
127
127
|
*/
|
|
128
|
-
export declare const VectorZero:
|
|
128
|
+
export declare const VectorZero: Readonly<Vector>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.273",
|
|
4
4
|
"description": "Helper functions for IsaacScript mods",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dist/**/*.d.ts"
|
|
26
26
|
],
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"isaac-typescript-definitions": "^1.0.
|
|
28
|
+
"isaac-typescript-definitions": "^1.0.392",
|
|
29
29
|
"isaacscript-lint": "^1.0.99",
|
|
30
30
|
"isaacscript-tsconfig": "^1.1.8",
|
|
31
31
|
"typedoc": "^0.22.15",
|