mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 04:41:55 +05:30
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import { ConstructProps } from "astal/gtk4";
|
|
import { astalify, Gtk } from "astal/gtk4";
|
|
|
|
export type PictureProps = ConstructProps<
|
|
Gtk.Picture,
|
|
Gtk.Picture.ConstructorProps
|
|
>;
|
|
|
|
export const Picture = astalify<Gtk.Picture, Gtk.Picture.ConstructorProps>(
|
|
Gtk.Picture,
|
|
);
|