Skip to content

Commit 5838132

Browse files
fix: lint
1 parent ad42b7b commit 5838132

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

packages/isaac-typescript-definitions-repentogon/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export * from "./enums/DialogIcon";
1818
export * from "./enums/DialogReturn";
1919
export * from "./enums/DwmWindowsAttribute";
2020
export * from "./enums/Ending";
21+
export * from "./enums/EvaluateStatStage";
2122
export * from "./enums/EventCounter";
2223
export * from "./enums/flags/AddHealthTypeFlag";
2324
export * from "./enums/flags/AnimationRenderFlag";

packages/isaac-typescript-definitions-repentogon/src/types/classes/entity/EntityBomb.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ declare global {
88
/** Returns how many frames until the bomb explodes. */
99
GetExplosionCountdown: () => int;
1010

11-
// `GetFallingSpeed` is ommitted due to being mislabeled as `GetFallAcceleration`.
11+
// `GetFallingSpeed` is omitted due to being mislabeled as `GetFallAcceleration`.
1212

1313
GetFallAcceleration: () => number;
1414

1515
GetFallSpeed: () => number;
1616

17-
// `GetHeight` is ommitted due to being mislabeled as `GetFallSpeed`.
17+
// `GetHeight` is omitted due to being mislabeled as `GetFallSpeed`.
1818

1919
/** Returns an array containing all of the entity indexes the bomb hit with its explosion. */
2020
GetHitList: () => int[];
@@ -42,11 +42,11 @@ declare global {
4242
/** Returns whether the bomb was created through the Angelic Prism effect. */
4343
IsPrismTouched: () => boolean;
4444

45-
// `SetFallingSpeed` is ommitted due to being mislabeled as `SetFallAcceleration`.
45+
// `SetFallingSpeed` is omitted due to being mislabeled as `SetFallAcceleration`.
4646

4747
SetFallAcceleration: (acceleration: number) => void;
4848

49-
// `SetHeight` is ommitted due to being mislabeled as `SetFallSpeed`.
49+
// `SetHeight` is omitted due to being mislabeled as `SetFallSpeed`.
5050
SetFallSpeed: (speed: number) => void;
5151

5252
/** Sets whether the bomb should load the costumes. */

0 commit comments

Comments
 (0)