isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
18 lines • 757 B
TypeScript
import { CollectibleType } from "isaac-typescript-definitions";
import type { ModCallbackCustom } from "../../enums/ModCallbackCustom";
import type { FireArgs, OptionalArgs } from "../private/CustomCallback";
import { CustomCallback } from "../private/CustomCallback";
type T = ModCallbackCustom.POST_COLLECTIBLE_EMPTY;
export declare class PostCollectibleEmpty extends CustomCallback<T> {
v: {
room: {
collectibleTypeMap: Map<PtrHash, CollectibleType>;
};
};
constructor();
protected shouldFire: (fireArgs: FireArgs<T>, optionalArgs: OptionalArgs<T>) => boolean;
private readonly postPickupUpdateCollectible;
private collectibleTypeChanged;
}
export {};
//# sourceMappingURL=PostCollectibleEmpty.d.ts.map