diff options
author | Aylur <[email protected]> | 2024-05-25 14:44:50 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-05-25 14:44:50 +0200 |
commit | 58fa1ab9be7ee8fd4a8e96865121a54d613978cc (patch) | |
tree | 56f01ba49fd2929690a16ac05a4af8f763e6b30b /node/src/imports.ts | |
parent | a7e25a4a5fcf4de89fe5a149a9aaf50a92be7af1 (diff) |
separate node and gjs into its own package
Diffstat (limited to 'node/src/imports.ts')
-rw-r--r-- | node/src/imports.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/node/src/imports.ts b/node/src/imports.ts new file mode 100644 index 0000000..47f582a --- /dev/null +++ b/node/src/imports.ts @@ -0,0 +1,8 @@ +import gi from "node-gtk" + +export { gi } +export const Gtk = gi.require("Gtk", "3.0") +export const GLib = gi.require("GLib", "2.0") +export const Gio = gi.require("Gio", "3.0") +export const GObject = gi.require("GObject", "2.0") +export const Astal = gi.require("Astal", "0.1") |