nixos-configs/modules/ags/gtk4/widget/subclasses/image.ts
matt1432 c8485430b9
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(ags4): improve types and remove as many 'any' as possible
2025-01-14 00:09:11 -05:00

21 lines
564 B
TypeScript

import { register } from 'astal';
import { Gtk, type ConstructProps } from 'astal/gtk4';
import astalify, { type AstalifyProps } 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);