isaacscript-common 14.1.0 → 14.1.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.
@@ -1,6 +1,6 @@
1
1
  --[[
2
2
 
3
- isaacscript-common 14.1.0
3
+ isaacscript-common 14.1.1
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -30942,9 +30942,7 @@ return ____exports
30942
30942
  ["src.decorators"] = function(...)
30943
30943
  local ____exports = {}
30944
30944
  function ____exports.Exported(self)
30945
- return function(____, target, propertyKey)
30946
- local ____target_exportedMethods_0 = target.exportedMethods
30947
- ____target_exportedMethods_0[#____target_exportedMethods_0 + 1] = propertyKey
30945
+ return function(____, _target, _propertyKey)
30948
30946
  end
30949
30947
  end
30950
30948
  return ____exports
@@ -5,5 +5,5 @@ import { Feature } from "./classes/private/Feature";
5
5
  *
6
6
  * This is only meant to be used internally.
7
7
  */
8
- export declare function Exported(): <T extends Feature>(target: T, propertyKey: keyof T) => void;
8
+ export declare function Exported(): <T extends Feature>(_target: T, _propertyKey: keyof T) => void;
9
9
  //# sourceMappingURL=decorators.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"decorators.d.ts","sourceRoot":"","sources":["../../src/decorators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD;;;;;GAKG;AACH,wBAAgB,QAAQ,4DACuC,IAAI,CAGlE"}
1
+ {"version":3,"file":"decorators.d.ts","sourceRoot":"","sources":["../../src/decorators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD;;;;;GAKG;AACH,wBAAgB,QAAQ,8DACyC,IAAI,CAGpE"}
@@ -4,9 +4,7 @@ local ____exports = {}
4
4
  --
5
5
  -- This is only meant to be used internally.
6
6
  function ____exports.Exported(self)
7
- return function(____, target, propertyKey)
8
- local ____target_exportedMethods_0 = target.exportedMethods
9
- ____target_exportedMethods_0[#____target_exportedMethods_0 + 1] = propertyKey
7
+ return function(____, _target, _propertyKey)
10
8
  end
11
9
  end
12
10
  return ____exports
@@ -0,0 +1,199 @@
1
+ export * from "./classes/DefaultMap";
2
+ export * from "./classes/ModFeature";
3
+ export * from "./classes/ModUpgraded";
4
+ export * from "./core/cachedClasses";
5
+ export * from "./core/constants";
6
+ export * from "./core/constantsFirstLast";
7
+ export * from "./core/upgradeMod";
8
+ export * from "./enums/AmbushType";
9
+ export * from "./enums/CornerType";
10
+ export * from "./enums/HealthType";
11
+ export * from "./enums/ISCFeature";
12
+ export * from "./enums/LadderSubTypeCustom";
13
+ export * from "./enums/ModCallbackCustom";
14
+ export * from "./enums/ModCallbackCustom2";
15
+ export * from "./enums/PocketItemType";
16
+ export * from "./enums/RockAltType";
17
+ export * from "./enums/SaveDataKey";
18
+ export * from "./enums/SerializationType";
19
+ export * from "./enums/SlotDestructionType";
20
+ export * from "./enums/StatType";
21
+ export * from "./features/characterHealthConversion";
22
+ export * from "./features/characterStats";
23
+ export * from "./features/collectibleItemPoolType";
24
+ export * from "./features/customGridEntity";
25
+ export * from "./features/customHotkeys";
26
+ export * from "./features/customPickup";
27
+ export * from "./features/customStage/exports";
28
+ export * from "./features/customTrapdoor/exports";
29
+ export * from "./features/debugDisplay/exports";
30
+ export * from "./features/deployJSONRoom";
31
+ export * from "./features/disableAllSound";
32
+ export * from "./features/disableInputs";
33
+ export * from "./features/extraConsoleCommands/exports";
34
+ export * from "./features/fadeInRemover";
35
+ export * from "./features/fastReset";
36
+ export * from "./features/firstLast";
37
+ export * from "./features/forgottenSwitch";
38
+ export * from "./features/pause";
39
+ export * from "./features/persistentEntities";
40
+ export * from "./features/pickupIndex";
41
+ export * from "./features/playerInventory";
42
+ export * from "./features/ponyDetection";
43
+ export * from "./features/preventChildEntities";
44
+ export * from "./features/preventCollectibleRotation";
45
+ export * from "./features/roomClearFrame";
46
+ export * from "./features/roomHistory";
47
+ export * from "./features/runInNFrames";
48
+ export * from "./features/saveDataManager/exports";
49
+ export * from "./features/sirenHelpers";
50
+ export * from "./features/stageHistory";
51
+ export * from "./features/taintedLazarusPlayers";
52
+ export * from "./functions/ambush";
53
+ export * from "./functions/array";
54
+ export * from "./functions/arrayLua";
55
+ export * from "./functions/benchmark";
56
+ export * from "./functions/bitSet128";
57
+ export * from "./functions/bitwise";
58
+ export * from "./functions/bombs";
59
+ export * from "./functions/bosses";
60
+ export * from "./functions/cards";
61
+ export * from "./functions/challenges";
62
+ export * from "./functions/characters";
63
+ export * from "./functions/charge";
64
+ export * from "./functions/chargeBar";
65
+ export * from "./functions/collectibleCacheFlag";
66
+ export * from "./functions/collectibles";
67
+ export * from "./functions/collectibleSet";
68
+ export * from "./functions/collectibleTag";
69
+ export * from "./functions/color";
70
+ export * from "./functions/curses";
71
+ export * from "./functions/debugFunctions";
72
+ export * from "./functions/decorators";
73
+ export * from "./functions/deepCopy";
74
+ export * from "./functions/deepCopyTests";
75
+ export * from "./functions/dev";
76
+ export * from "./functions/dimensions";
77
+ export * from "./functions/direction";
78
+ export * from "./functions/doors";
79
+ export * from "./functions/easing";
80
+ export * from "./functions/eden";
81
+ export * from "./functions/effects";
82
+ export * from "./functions/emptyRoom";
83
+ export * from "./functions/entities";
84
+ export * from "./functions/entitiesSpecific";
85
+ export * from "./functions/entityTypes";
86
+ export * from "./functions/enums";
87
+ export * from "./functions/familiars";
88
+ export * from "./functions/flag";
89
+ export * from "./functions/flying";
90
+ export * from "./functions/globals";
91
+ export * from "./functions/gridEntities";
92
+ export * from "./functions/gridEntitiesSpecific";
93
+ export * from "./functions/gridIndex";
94
+ export * from "./functions/hex";
95
+ export * from "./functions/initArray";
96
+ export * from "./functions/input";
97
+ export * from "./functions/isaacAPIClass";
98
+ export * from "./functions/itemPool";
99
+ export * from "./functions/jsonHelpers";
100
+ export * from "./functions/jsonRoom";
101
+ export * from "./functions/kColor";
102
+ export * from "./functions/language";
103
+ export * from "./functions/level";
104
+ export * from "./functions/levelGrid";
105
+ export * from "./functions/log";
106
+ export * from "./functions/logEntities";
107
+ export * from "./functions/logMisc";
108
+ export * from "./functions/map";
109
+ export * from "./functions/math";
110
+ export * from "./functions/mergeTests";
111
+ export * from "./functions/minimap";
112
+ export * from "./functions/nextStage";
113
+ export * from "./functions/npcs";
114
+ export * from "./functions/pickups";
115
+ export * from "./functions/pickupsSpecific";
116
+ export * from "./functions/pickupVariants";
117
+ export * from "./functions/pills";
118
+ export * from "./functions/playerCenter";
119
+ export * from "./functions/playerDataStructures";
120
+ export * from "./functions/playerHealth";
121
+ export * from "./functions/playerIndex";
122
+ export * from "./functions/players";
123
+ export * from "./functions/playerStats";
124
+ export * from "./functions/pocketItems";
125
+ export * from "./functions/positionVelocity";
126
+ export * from "./functions/pressurePlate";
127
+ export * from "./functions/projectiles";
128
+ export * from "./functions/random";
129
+ export * from "./functions/reorderedCallbacks";
130
+ export * from "./functions/revive";
131
+ export * from "./functions/rng";
132
+ export * from "./functions/rockAlt";
133
+ export * from "./functions/roomData";
134
+ export * from "./functions/roomGrid";
135
+ export * from "./functions/rooms";
136
+ export * from "./functions/roomShape";
137
+ export * from "./functions/roomShapeWalls";
138
+ export * from "./functions/roomTransition";
139
+ export * from "./functions/run";
140
+ export * from "./functions/saveFile";
141
+ export * from "./functions/seeds";
142
+ export * from "./functions/serialization";
143
+ export * from "./functions/set";
144
+ export * from "./functions/sound";
145
+ export * from "./functions/spawnCollectible";
146
+ export * from "./functions/sprites";
147
+ export * from "./functions/stage";
148
+ export * from "./functions/string";
149
+ export * from "./functions/table";
150
+ export * from "./functions/tears";
151
+ export * from "./functions/transformations";
152
+ export * from "./functions/trinketCacheFlag";
153
+ export * from "./functions/trinketGive";
154
+ export * from "./functions/trinkets";
155
+ export * from "./functions/trinketSet";
156
+ export * from "./functions/tstlClass";
157
+ export * from "./functions/types";
158
+ export * from "./functions/ui";
159
+ export * from "./functions/utils";
160
+ export * from "./functions/vector";
161
+ export * from "./functions/weighted";
162
+ export * from "./interfaces/ChargeBarSprites";
163
+ export * from "./interfaces/Corner";
164
+ export * from "./interfaces/CustomStageTSConfig";
165
+ export * from "./interfaces/GridEntityCustomData";
166
+ export * from "./interfaces/JSONRoomsFile";
167
+ export * from "./interfaces/PlayerHealth";
168
+ export * from "./interfaces/PocketItemDescription";
169
+ export * from "./interfaces/RoomDescription";
170
+ export * from "./interfaces/SaveData";
171
+ export * from "./interfaces/StatTypeType";
172
+ export * from "./interfaces/TrinketSituation";
173
+ export * from "./maps/cardNameToTypeMap";
174
+ export * from "./maps/characterNameToTypeMap";
175
+ export * from "./maps/pillNameToEffectMap";
176
+ export * from "./maps/roomNameToTypeMap";
177
+ export * from "./objects/colors";
178
+ export * from "./objects/kColors";
179
+ export * from "./types/AllButFirst";
180
+ export * from "./types/AllButLast";
181
+ export * from "./types/AnyEntity";
182
+ export * from "./types/AnyGridEntity";
183
+ export * from "./types/CollectibleIndex";
184
+ export * from "./types/Constructor";
185
+ export * from "./types/FunctionTuple";
186
+ export * from "./types/HasAllEnumKeys";
187
+ export * from "./types/Immutable";
188
+ export * from "./types/LowercaseKeys";
189
+ export * from "./types/PickingUpItem";
190
+ export * from "./types/PickupIndex";
191
+ export * from "./types/PlayerIndex";
192
+ export * from "./types/PossibleStatType";
193
+ export * from "./types/StartsWithLowercase";
194
+ export * from "./types/StartsWithUppercase";
195
+ export * from "./types/TSTLClass";
196
+ export * from "./types/UppercaseKeys";
197
+ export * from "./types/WeightedArray";
198
+ export * from "isaac-typescript-definitions";
199
+ //# sourceMappingURL=indexLua.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"indexLua.d.ts","sourceRoot":"","sources":["../../../../../packages/isaacscript-common/src/indexLua.ts"],"names":[],"mappings":"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"}