nixos-configs/modules/ags/gtk4/widget/subclasses/levelbar.ts
matt1432 8871cc8f01
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags4): add rest of subclasses
2025-01-01 13:38:44 -05:00

19 lines
490 B
TypeScript

/* eslint-disable @typescript-eslint/no-explicit-any */
import { register } from 'astal';
import { Gtk, type ConstructProps } from 'astal/gtk4';
import astalify from './astalify';
export type LevelBarProps = ConstructProps<
LevelBar,
Gtk.LevelBar.ConstructorProps & { css: string }
>;
@register({ GTypeName: 'LevelBar' })
export class LevelBar extends astalify(Gtk.LevelBar) {
constructor(props?: LevelBarProps) { super(props as any); }
getChildren() { return []; }
}