isaac-typescript-definitions
Version:
TypeScript definitions for The Binding of Isaac: Repentance.
15 lines (11 loc) • 425 B
TypeScript
import type { Keyboard } from "../../enums/Keyboard";
declare global {
/** This is a global variable exposed as part of ModConfigMenu. */
const InputHelper: InputHelperInterface | undefined;
/** @noSelf */
interface InputHelperInterface {
KeyboardPressed: (key: Keyboard, controllerIndex: int) => boolean;
ControllerToString: LuaMap<Keyboard, string>;
KeyboardToString: LuaMap<Keyboard, string>;
}
}