@girs/gjs 4.0.0-beta.15 → 4.0.0-beta.16
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 +1 -1
- package/package.json +5 -5
- package/system.d.ts +2 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for Gjs using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.
|
|
7
|
+
GJS TypeScript type definitions for Gjs using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.16.
|
|
8
8
|
|
|
9
9
|
[GJS](https://gitlab.gnome.org/GNOME/gjs) is a JavaScript runtime for the GNOME ecosystem. Using GJS and the type definitions in this NPM package, you can build GTK applications in JavaScript or TypeScript with type checking, better autocompletion and inline documentations.
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gjs",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.16",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gjs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gjs.js",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"test": "tsc --project tsconfig.json"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@girs/cairo-1.0": "^1.0.0-4.0.0-beta.
|
|
55
|
-
"@girs/gio-2.0": "^2.
|
|
56
|
-
"@girs/glib-2.0": "^2.
|
|
57
|
-
"@girs/gobject-2.0": "^2.
|
|
54
|
+
"@girs/cairo-1.0": "^1.0.0-4.0.0-beta.16",
|
|
55
|
+
"@girs/gio-2.0": "^2.82.0-4.0.0-beta.16",
|
|
56
|
+
"@girs/glib-2.0": "^2.82.0-4.0.0-beta.16",
|
|
57
|
+
"@girs/gobject-2.0": "^2.82.0-4.0.0-beta.16"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"typescript": "*"
|
package/system.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export const programArgs: string[];
|
|
|
39
39
|
* @param o Any Object
|
|
40
40
|
* @returns A hexadecimal string (e.g. `0xb4f170f0`)
|
|
41
41
|
*/
|
|
42
|
-
export function addressOf(o:
|
|
42
|
+
export function addressOf(o: object): string;
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
45
|
* Return the memory address of any GObject as a string.
|
|
@@ -145,7 +145,7 @@ export function dumpMemoryInfo(path?: string): void;
|
|
|
145
145
|
* returns a non-zero error code, then `make` aborts the build.
|
|
146
146
|
* @param code An exit code
|
|
147
147
|
*/
|
|
148
|
-
export function exit(code: number):
|
|
148
|
+
export function exit(code: number): never;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
151
|
* The System module provides common low-level facilities such as access to
|