nixos-configs/modules/ags/gtk4/widget/subclasses/popover.ts
matt1432 ad69ef38ea
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags4): only accept widgets as children and some refactor
2025-01-12 20:12:46 -05:00

16 lines
459 B
TypeScript

import { register } from 'astal';
import { Gtk, type ConstructProps } from 'astal/gtk4';
import astalify from './astalify';
export type PopoverProps = ConstructProps<
Popover,
Gtk.Popover.ConstructorProps & { css: string }
>;
@register({ GTypeName: 'Popover' })
export class Popover extends astalify(Gtk.Popover) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
constructor(props?: PopoverProps) { super(props as any); }
}