VoidShell/globals.ts
2024-10-31 15:39:18 -06:00

10 lines
134 B
TypeScript

import Gtk from "gi://Gtk";
declare global {
const Align: typeof Gtk.Align;
}
Object.assign(globalThis, {
Align: Gtk.Align,
});