API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
typeInputSequence
An ordered list of SequenceAction pattern steps. Each entry is a single InputChannel (a one-channel step), a nested InputChord (several channels required together for that one step), or a nested InputAlternation (several alternatives, any one of which satisfies that one step) - the array-form equivalent of a `'>'`-separated, `'+'`-joined, `'|'`-alternated string pattern such as `'Down>Down+Right>Right'` or `'A+B|C>D'`.
import { InputSequence } from '@codexo/exojs'An ordered list of SequenceAction pattern steps. Each entry is a single InputChannel (a one-channel step), a nested InputChord (several channels required together for that one step), or a nested InputAlternation (several alternatives, any one of which satisfies that one step) - the array-form equivalent of a `'>'`-separated, `'+'`-joined, `'|'`-alternated string pattern such as `'Down>Down+Right>Right'` or `'A+B|C>D'`.
ReadonlyArray<InputAlternationOne SequenceAction step (or the whole binding a ChordAction accepts) satisfied by any ONE of several alternatives rather than requiring all of them - the array… | InputChannelChannel a single InputBinding can subscribe to. | InputChordOne SequenceAction step requiring every listed channel simultaneously - the array-form equivalent of a `'+'`-joined chord token group, and the whole binding a…>