isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
18 lines • 821 B
TypeScript
import { ModCallbackCustom } from "../../enums/ModCallbackCustom";
import type { PlayerStat } from "../../enums/PlayerStat";
import { shouldFirePlayer } from "../../shouldFire";
import type { PlayerIndex } from "../../types/PlayerIndex";
import type { PossibleStatType } from "../../types/PossibleStatType";
import { DefaultMap } from "../DefaultMap";
import { CustomCallback } from "../private/CustomCallback";
export declare class PostPlayerChangeStat extends CustomCallback<ModCallbackCustom.POST_PLAYER_CHANGE_STAT> {
v: {
run: {
playersStatMap: DefaultMap<PlayerIndex, Map<PlayerStat, PossibleStatType>, []>;
};
};
constructor();
protected shouldFire: typeof shouldFirePlayer;
private readonly postPEffectReordered;
}
//# sourceMappingURL=PostPlayerChangeStat.d.ts.map