isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
8 lines • 478 B
TypeScript
/**
* Helper function to see if a particular command is a vanilla console command. This is useful
* because the `EXECUTE_CMD` callback will not fire for any vanilla commands.
*/
export declare function isVanillaConsoleCommand(commandName: string): boolean;
/** Helper function to print whether something was enabled or disabled to the in-game console. */
export declare function printEnabled(enabled: boolean, description: string): void;
//# sourceMappingURL=console.d.ts.map