18 lines
449 B
TypeScript
18 lines
449 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 PopoverProps = ConstructProps<
|
||
|
Popover,
|
||
|
Gtk.Popover.ConstructorProps & { css: string }
|
||
|
>;
|
||
|
|
||
|
@register({ GTypeName: 'Popover' })
|
||
|
export class Popover extends astalify(Gtk.Popover) {
|
||
|
constructor(props?: PopoverProps) { super(props as any); }
|
||
|
}
|