From 1c9377ec696c1f8269bf30a7af1e4a9566d55625 Mon Sep 17 00:00:00 2001 From: Aylur Date: Sat, 20 Jul 2024 14:05:47 +0200 Subject: update eslint, ts-for-gir --- gjs/src/widgets.ts | 60 +++++++++++++++++++++++++++--------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) (limited to 'gjs/src/widgets.ts') diff --git a/gjs/src/widgets.ts b/gjs/src/widgets.ts index bf5ac50..a0f333b 100644 --- a/gjs/src/widgets.ts +++ b/gjs/src/widgets.ts @@ -5,14 +5,14 @@ import astalify, { type ConstructProps, type Widget } from "./astalify.js" export { astalify, ConstructProps } // Box -export type Box = Widget +export type Box = Widget export const Box = astalify(Astal.Box) -export type BoxProps = ConstructProps +export type BoxProps = ConstructProps // Button -export type Button = Widget +export type Button = Widget export const Button = astalify(Astal.Button) -export type ButtonProps = ConstructProps // CenterBox -export type CenterBox = Widget +export type CenterBox = Widget export const CenterBox = astalify(Astal.CenterBox) -export type CenterBoxProps = ConstructProps +export type CenterBoxProps = ConstructProps // TODO: CircularProgress // DrawingArea -export type DrawingArea = Widget +export type DrawingArea = Widget export const DrawingArea = astalify(Gtk.DrawingArea) -export type DrawingAreaProps = ConstructProps // Entry -export type Entry = Widget +export type Entry = Widget export const Entry = astalify(Gtk.Entry) -export type EntryProps = ConstructProps // EventBox -export type EventBox = Widget +export type EventBox = Widget export const EventBox = astalify(Astal.EventBox) -export type EventBoxProps = ConstructProps +export type Icon = Widget export const Icon = astalify(Astal.Icon) -export type IconProps = ConstructProps +export type IconProps = ConstructProps // Label -export type Label = Widget +export type Label = Widget export const Label = astalify(Gtk.Label) -export type LabelProps = ConstructProps +export type LabelProps = ConstructProps // LevelBar -export type LevelBar = Widget +export type LevelBar = Widget export const LevelBar = astalify(Astal.LevelBar) -export type LevelBarProps = ConstructProps +export type LevelBarProps = ConstructProps // TODO: ListBox // Overlay -export type Overlay = Widget +export type Overlay = Widget export const Overlay = astalify(Astal.Overlay) -export type OverlayProps = ConstructProps +export type OverlayProps = ConstructProps // Revealer -export type Revealer = Widget +export type Revealer = Widget export const Revealer = astalify(Gtk.Revealer) -export type RevealerProps = ConstructProps +export type RevealerProps = ConstructProps // Scrollable -export type Scrollable = Widget +export type Scrollable = Widget export const Scrollable = astalify(Astal.Scrollable) -export type ScrollableProps = ConstructProps +export type ScrollableProps = ConstructProps // Slider -export type Slider = Widget +export type Slider = Widget export const Slider = astalify(Astal.Slider) -export type SliderProps = ConstructProps // TODO: Stack // Switch -export type Switch = Widget +export type Switch = Widget export const Switch = astalify(Gtk.Switch) -export type SwitchProps = ConstructProps +export type SwitchProps = ConstructProps // Window -export type Window = Widget +export type Window = Widget export const Window = astalify(Astal.Window) -export type WindowProps = ConstructProps +export type WindowProps = ConstructProps -- cgit v1.2.3