Type Alias Chord

Chord: Token | number

A single Token or a combination of Tokens which are joined via a bitwise OR (|) operator.

const single = Key.LetterC;

const combination = Modifier.Alt | Key.Number2;