summaryrefslogtreecommitdiff
path: root/node/src/index.ts
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-05-25 14:44:50 +0200
committerAylur <[email protected]>2024-05-25 14:44:50 +0200
commit58fa1ab9be7ee8fd4a8e96865121a54d613978cc (patch)
tree56f01ba49fd2929690a16ac05a4af8f763e6b30b /node/src/index.ts
parenta7e25a4a5fcf4de89fe5a149a9aaf50a92be7af1 (diff)
separate node and gjs into its own package
Diffstat (limited to 'node/src/index.ts')
-rw-r--r--node/src/index.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/node/src/index.ts b/node/src/index.ts
new file mode 100644
index 0000000..77fba88
--- /dev/null
+++ b/node/src/index.ts
@@ -0,0 +1,9 @@
+export { subprocess, exec, execAsync } from "./process.js"
+export { interval, timeout, idle } from "./time.js"
+export { bind } from "./binding.js"
+export { Variable } from "./variable.js"
+export * as Widget from "./widgets.js"
+export { App } from "./application.js"
+
+// for convinience
+export { Astal, Gtk, GLib, GObject, Gio, gi } from "./imports.js"