From e5251d23f158c7cc092121c3a7cc0438a73746ec Mon Sep 17 00:00:00 2001 From: Aylur Date: Mon, 15 Jul 2024 22:09:58 +0200 Subject: remove python and node I have no desire to work on the python version The node version has the issue of promises not working which makes it unusable but gjs works just as good if not better. Might look back into node later --- node/src/widgets.ts | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 node/src/widgets.ts (limited to 'node/src/widgets.ts') diff --git a/node/src/widgets.ts b/node/src/widgets.ts deleted file mode 100644 index 2ce256a..0000000 --- a/node/src/widgets.ts +++ /dev/null @@ -1,37 +0,0 @@ -/* eslint-disable max-len */ -import { Astal, Gtk } from "./imports.js" -import astalify, { type ConstructProps } from "./astalify.js" -import type GtkT from "@girs/node-gtk-3.0/node-gtk-3.0" -import type AstalT from "@girs/node-astal-0.1/node-astal-0.1" - -export { astalify, ConstructProps } - -// Label -export const Label = astalify(Gtk.Label) -export type LabelProps = ConstructProps - -// Icon -export const Icon = astalify(Astal.Icon) -export type IconProps = ConstructProps - -// Button -export const Button = astalify(Astal.Button) -export type ButtonProps = ConstructProps - -// Window -export const Window = astalify(Astal.Window) -export type WindowProps = ConstructProps - -// Box -export const Box = astalify(Astal.Box) -export type BoxProps = ConstructProps - -// CenterBox -export const CenterBox = astalify(Astal.CenterBox) -export type CenterBoxProps = ConstructProps - -// EventBox -export const EventBox = astalify(Astal.EventBox) -export type EventBoxProps = ConstructProps -- cgit v1.2.3