6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
import { WindowEventName } from "./PackageTypes.js";
|
|
export interface WindowEvent {
|
|
type: WindowEventName;
|
|
data: any;
|
|
}
|