isaacscript-common 1.2.52 → 1.2.53
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 +1 -0
- package/dist/index.lua +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export * from "./maps/trinketNameMap";
|
|
|
73
73
|
export * from "./sets/cards";
|
|
74
74
|
export * from "./types/AnyEntity";
|
|
75
75
|
export * from "./types/CallbackParametersCustom";
|
|
76
|
+
export * from "./types/DefaultMap";
|
|
76
77
|
export * from "./types/HealthType";
|
|
77
78
|
export * from "./types/JSONDoor";
|
|
78
79
|
export * from "./types/JSONEntity";
|
package/dist/index.lua
CHANGED
|
@@ -578,6 +578,14 @@ do
|
|
|
578
578
|
end
|
|
579
579
|
end
|
|
580
580
|
end
|
|
581
|
+
do
|
|
582
|
+
local ____export = require("types.DefaultMap")
|
|
583
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
584
|
+
if ____exportKey ~= "default" then
|
|
585
|
+
____exports[____exportKey] = ____exportValue
|
|
586
|
+
end
|
|
587
|
+
end
|
|
588
|
+
end
|
|
581
589
|
do
|
|
582
590
|
local ____export = require("types.HealthType")
|
|
583
591
|
for ____exportKey, ____exportValue in pairs(____export) do
|