psytask - v1.1.1
    Preparing search index...

    Type Alias SceneEventMap

    SceneEventMap: HTMLElementEventMap & {
        "scene:show": null;
        "scene:frame": { lastFrameTime: number };
        "scene:close": null;
    } & { [K in `mouse:${(...)
    | (...)
    | (...)
    | (...)}`]: MouseEvent } & { [K in `key:${string}`]: KeyboardEvent }

    Scene lifecycle and root element event name-value pairs.

    name trigger timing
    scene:show the scene is shown
    scene:frame on each frame when the scene is shown
    scene:close the scene is closed
    mouse:left the left mouse button is pressed
    mouse:middle the middle mouse button is pressed
    mouse:right the right mouse button is pressed
    mouse:unknown an unknown mouse button is pressed
    key:<key> a key is pressed
    <HTMLElement-event> an html element event is triggered