Documentation
    Preparing search index...

    Type Alias InputEnum<TType, TEnum>

    InputEnum: { [T in keyof TEnum]: { type: TType; value: TEnum[T] } }

    An enum that holds a mapping of friendly names to an object containing the type of the enum as well as the raw / native value e.g.

    {
    "KeyA": { "type": "Keyboard", "value": "KeyA" },
    "KeyS": { "type": "Keyboard", "value": "KeyS" },
    ...
    }

    Type Parameters

    • TType extends string

      No description provided.

    • TEnum extends object

      No description provided.