diff options
Diffstat (limited to 'gjs/src')
-rw-r--r-- | gjs/src/widgets.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gjs/src/widgets.ts b/gjs/src/widgets.ts index 29c0044..bf5ac50 100644 --- a/gjs/src/widgets.ts +++ b/gjs/src/widgets.ts @@ -92,7 +92,9 @@ export type ScrollableProps = ConstructProps<typeof Astal.Scrollable, Astal.Scro // Slider export type Slider = Widget<typeof Astal.Slider> export const Slider = astalify<typeof Astal.Slider, SliderProps, "Slider">(Astal.Slider) -export type SliderProps = ConstructProps<typeof Astal.Slider, Astal.Slider.ConstructorProperties> +export type SliderProps = ConstructProps<typeof Astal.Slider, Astal.Slider.ConstructorProperties, { + onDragged: [] +}> // TODO: Stack |