nixos-configs/modules/ags/gtk4/widget/subclasses/window.ts

17 lines
458 B
TypeScript
Raw Normal View History

2025-01-01 13:38:44 -05:00
import { register } from 'astal';
import { Astal, type ConstructProps } from 'astal/gtk4';
import astalify from './astalify';
export type WindowProps = ConstructProps<
Window,
Astal.Window.ConstructorProps & { css: string }
>;
@register({ GTypeName: 'Window' })
export class Window extends astalify(Astal.Window) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2025-01-01 13:38:44 -05:00
constructor(props?: WindowProps) { super(props as any); }
}