nixos-configs/modules/ags/gtk4/widget/subclasses/window.ts
matt1432 e7accbd7bd
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags4): write own ConstructProps to exclude props
2025-01-15 18:17:27 -05:00

19 lines
548 B
TypeScript

import { register } from 'astal';
import { Astal } from 'astal/gtk4';
import astalify, { type AstalifyProps, type ConstructProps } from '../astalify';
export type WindowProps = ConstructProps<
WindowClass,
Astal.Window.ConstructorProps & AstalifyProps
>;
@register({ GTypeName: 'Window' })
export class WindowClass extends astalify(Astal.Window) {
constructor({ cssName = 'window', ...props }: WindowProps = {}) {
super({ cssName, ...props });
}
}
export const Window = (props?: WindowProps) => new WindowClass(props);