summaryrefslogtreecommitdiff
path: root/core/gjs/index.ts
blob: 901b264520638e27733ff54d191206ab8fb614a7 (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 { default as App } from "./src/application.js"

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