10 lines
134 B
TypeScript
10 lines
134 B
TypeScript
import Gtk from "gi://Gtk";
|
|
|
|
declare global {
|
|
const Align: typeof Gtk.Align;
|
|
}
|
|
|
|
Object.assign(globalThis, {
|
|
Align: Gtk.Align,
|
|
});
|