PokéRogue
    Preparing search index...
    interface KeyboardConfig {
        blacklist?: InterfaceButtonName[];
        custom?: Record<keyof KeyboardMapping, -1 | SettingKeyboard>;
        default: Record<keyof KeyboardMapping, SettingKeyboard | -1>;
        deviceMapping: Readonly<KeyboardMapping>;
        icons: Record<keyof KeyboardMapping, string>;
        padID: string;
        padType: string;
        settings: Partial<Record<SettingKeyboard, Button>>;
    }
    Index

    Properties

    blacklist?: InterfaceButtonName[]

    List of keys that cannot be remapped

    custom?: Record<keyof KeyboardMapping, -1 | SettingKeyboard>

    User-configured custom bindings for each key

    default: Record<keyof KeyboardMapping, SettingKeyboard | -1>

    Default bindings for each key

    deviceMapping: Readonly<KeyboardMapping>

    Mapping of key names to their keycode

    icons: Record<keyof KeyboardMapping, string>

    Mapping of icons to use for each keyboard key

    padID: string

    Identifier for the pad ID

    padType: string

    The type of controller layout

    The setting names that can be associated with the controller