isaacscript-common 3.4.0 → 3.4.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.
- package/cachedClasses.d.ts +2 -1
- package/constants.d.ts +3 -0
- package/constantsFirstLast.d.ts +3 -0
- package/package.json +2 -2
package/cachedClasses.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="isaac-typescript-definitions" />
|
|
2
2
|
/// <reference types="isaac-typescript-definitions" />
|
|
3
3
|
/// <reference types="isaac-typescript-definitions" />
|
|
4
|
+
/// <reference types="isaac-typescript-definitions" />
|
|
4
5
|
/**
|
|
5
6
|
* A cached version of the class returned from the `Game()` constructor.
|
|
6
7
|
*
|
|
@@ -18,7 +19,7 @@ export declare const game: Game;
|
|
|
18
19
|
* Caching the results of this constructor is safe, but caching other classes (like `Level` or
|
|
19
20
|
* `Room`) is not safe and can lead to the game crashing in certain situations.
|
|
20
21
|
*/
|
|
21
|
-
export declare const itemConfig:
|
|
22
|
+
export declare const itemConfig: ItemConfig;
|
|
22
23
|
/**
|
|
23
24
|
* A cached version of the class returned from the `MusicManager()` constructor.
|
|
24
25
|
*
|
package/constants.d.ts
CHANGED
package/constantsFirstLast.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module Constants (First and Last)
|
|
3
|
+
*/
|
|
1
4
|
import { Card, CollectibleType, PillColor, PillEffect, PlayerType, TrinketType } from "isaac-typescript-definitions";
|
|
2
5
|
/** Equal to `CollectibleType.SAD_ONION`. */
|
|
3
6
|
export declare const FIRST_COLLECTIBLE_TYPE = CollectibleType.SAD_ONION;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"description": "Helper functions and features for IsaacScript mods.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"main": "index",
|
|
23
23
|
"types": "index.d.ts",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"isaac-typescript-definitions": "^2.0.
|
|
25
|
+
"isaac-typescript-definitions": "^2.0.59"
|
|
26
26
|
}
|
|
27
27
|
}
|