summaryrefslogtreecommitdiff
path: root/gjs
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-07-27 13:52:29 +0200
committerAylur <[email protected]>2024-07-27 13:52:29 +0200
commitcf2260d5a8d4163f451029b53327cbe3b6ee73ab (patch)
treed677248316abc8e482ff1faae496ca66ff7fec17 /gjs
parent22132efcdeb08569cc27ca5414a0bb47511872d6 (diff)
add: Label widget
Diffstat (limited to 'gjs')
-rw-r--r--gjs/src/widgets.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/gjs/src/widgets.ts b/gjs/src/widgets.ts
index a0f333b..82d4708 100644
--- a/gjs/src/widgets.ts
+++ b/gjs/src/widgets.ts
@@ -63,9 +63,9 @@ export const Icon = astalify<typeof Astal.Icon, IconProps, "Icon">(Astal.Icon)
export type IconProps = ConstructProps<Astal.Icon, Astal.Icon.ConstructorProps>
// Label
-export type Label = Widget<Gtk.Label>
-export const Label = astalify<typeof Gtk.Label, LabelProps, "Label">(Gtk.Label)
-export type LabelProps = ConstructProps<Gtk.Label, Gtk.Label.ConstructorProps>
+export type Label = Widget<Astal.Label>
+export const Label = astalify<typeof Astal.Label, LabelProps, "Label">(Astal.Label)
+export type LabelProps = ConstructProps<Astal.Label, Astal.Label.ConstructorProps>
// LevelBar
export type LevelBar = Widget<Astal.LevelBar>