Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
WebDesktop/WindowAPI/dist/helper/EventData.d.ts

6 lines
128 B
TypeScript

import { WindowEventName } from "./PackageTypes.js";
export interface WindowEvent {
type: WindowEventName;
data: any;
}