Skip to main content
Module

x/pane/mod.ts>PaneEvent

🖼️ A deno module providing bindings for cross-platform windowing
Latest
type alias PaneEvent
Re-export
import { type PaneEvent } from "https://deno.land/x/pane@0.2.1/mod.ts";

Describes a generic event.

definition:
| { type: "newEvents"; value: StartCause; }
| { type: "windowEvent"; value: { windowId: number; event: WindowEvent; }; }
| { type: "deviceEvent"; value: { deviceId: number; event: DeviceEvent; }; }
| { type: "userEvent"; }
| { type: "suspended"; }
| { type: "resumed"; }
| { type: "mainEventsCleared"; }
| { type: "redrawRequested"; }
| { type: "redrawEventsCleared"; }
| { type: "loopDestroyed"; }