2025-01-01 13:38:44 -05:00
|
|
|
import { register } from 'astal';
|
|
|
|
import { Gtk, type ConstructProps } from 'astal/gtk4';
|
|
|
|
|
|
|
|
import astalify from './astalify';
|
|
|
|
|
|
|
|
|
|
|
|
export type SwitchProps = ConstructProps<
|
|
|
|
Switch,
|
|
|
|
Gtk.Switch.ConstructorProps & { css: string }
|
|
|
|
>;
|
|
|
|
|
|
|
|
@register({ GTypeName: 'Switch' })
|
|
|
|
export class Switch extends astalify(Gtk.Switch) {
|
2025-01-12 20:12:46 -05:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2025-01-01 13:38:44 -05:00
|
|
|
constructor(props?: SwitchProps) { super(props as any); }
|
|
|
|
|
|
|
|
getChildren() { return []; }
|
|
|
|
}
|