@gtkx/ffi 0.1.22 → 0.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="logo.svg" alt="GTKX Logo" width="128" height="128">
2
+ <img src="https://raw.githubusercontent.com/eugeniodepalo/gtkx/HEAD/logo.svg" alt="GTKX Logo" width="128" height="128">
3
3
  </p>
4
4
 
5
5
  <h1 align="center">GTKX</h1>
@@ -0,0 +1,11 @@
1
+ type SignalParam = {
2
+ type: import("@gtkx/native").Type;
3
+ getCls?: () => {
4
+ prototype: object;
5
+ };
6
+ };
7
+ export type SignalMeta = Record<string, {
8
+ params: SignalParam[];
9
+ returnType?: import("@gtkx/native").Type;
10
+ }>;
11
+ export {};
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/ffi",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "description": "Generated TypeScript FFI bindings for GTK4 libraries",
5
5
  "keywords": [
6
6
  "gtk",
@@ -50,10 +50,10 @@
50
50
  "dist"
51
51
  ],
52
52
  "dependencies": {
53
- "@gtkx/native": "0.1.22"
53
+ "@gtkx/native": "0.1.24"
54
54
  },
55
55
  "devDependencies": {
56
- "@gtkx/gir": "0.1.22"
56
+ "@gtkx/gir": "0.1.24"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "tsc -b && cp ../../README.md .",