diff options
author | Aylur <[email protected]> | 2024-06-05 13:44:05 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-05 13:44:05 +0200 |
commit | f22459c6ffc0fcc0e2d950aa2759682da0adb047 (patch) | |
tree | 9b2fa6f9db9d263b46d1d057ecaa2fb50e23df16 | |
parent | 1e06ed0d7a5a2878ddd3d7b5df37a85d133ea0c9 (diff) |
export Binding
-rw-r--r-- | gjs/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gjs/index.ts b/gjs/index.ts index 092f213..709017a 100644 --- a/gjs/index.ts +++ b/gjs/index.ts @@ -3,7 +3,7 @@ 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 { 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" |