@studiokeywi/banjo - v0.0.1
    Preparing search index...

    Interface SequenceData

    Metadata around a keyboard sequence

    interface SequenceData {
        decay: number;
        decaying: null | number;
        keys: KeyData[];
        progress: KeyData[];
    }
    Index

    Properties

    decay: number

    Duration allowed between key presses (in ms)

    decaying: null | number

    Identifier used for timeouts that drop sequences after the decay period

    keys: KeyData[]

    In order sequence of keys to press

    progress: KeyData[]

    Keys pressed in the sequence so far