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

export * from "./src/imports.js"
export * from "./src/process.js"
export * from "./src/time.js"
export * from "./src/file.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)