A single Token or a combination of Tokens which are joined via a bitwise OR (|) operator.
Token
const single = Key.LetterC;const combination = Modifier.Alt | Key.Number2; Copy
const single = Key.LetterC;const combination = Modifier.Alt | Key.Number2;
A single
Token
or a combination of Tokens which are joined via a bitwise OR (|) operator.