summaryrefslogtreecommitdiff
path: root/gjs/index.ts
blob: 709017ab4c8a61aea76eb27193f478e21fa61848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Gtk } from "./src/imports.js"

export * from "./src/imports.js"
export * from "./src/process.js"
export * from "./src/time.js"
export { bind, default as Binding } from "./src/binding.js"
export { Variable } from "./src/variable.js"
export * as Widget from "./src/widgets.js"
export { App } from "./src/application.js"

// gjs crashes if a widget is constructed before Gtk.init
Gtk.init(null)