blob: 092f2132fb40ae15886a630e43dc9893840cc1c3 (
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 } 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)
|