nixos-configs/modules/ags/gtk4/widget/subclasses/image.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

21 lines
565 B
TypeScript

import { register } from 'astal';
import { Gtk } from 'astal/gtk4';
import astalify, { type AstalifyProps, type ConstructProps } from '../astalify';
export type ImageProps = ConstructProps<
ImageClass,
Gtk.Image.ConstructorProps & AstalifyProps
>;
@register({ GTypeName: 'Image' })
export class ImageClass extends astalify(Gtk.Image) {
constructor({ cssName = 'image', ...props }: ImageProps = {}) {
super({ cssName, ...props });
}
getChildren() { return []; }
}
export const Image = (props?: ImageProps) => new ImageClass(props);