gameplate - v2.2.0
    Preparing search index...

    Interface RecordedEvent

    A single recorded action dispatch.

    interface RecordedEvent {
        name: string;
        args: readonly unknown[];
        t: number;
    }
    Index

    Properties

    Properties

    name: string

    Name of the action that was dispatched (the key in the action map).

    args: readonly unknown[]

    Positional arguments passed to the action. Should be JSON-serialisable.

    t: number

    Milliseconds elapsed since recorder.start().