@girs/javascriptcore-4.1 2.44.2-4.0.0-beta.6 → 2.44.2-4.0.0-beta.8

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
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/javascriptcore-4.1)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for JavaScriptCore-4.1, generated from library version 2.44.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.6.
8
+ GJS TypeScript type definitions for JavaScriptCore-4.1, generated from library version 2.44.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.8.
9
9
 
10
10
 
11
11
  ## Install
package/index.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Type Definitions for Gjs (https://gjs.guide/)
3
+ *
4
+ * These type definitions are automatically generated, do not edit them by hand.
5
+ * If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gir
6
+ *
7
+ * This template is used to generate the index.d.ts file of each GIR module like Gtk-4.0, GObject-2.0, ...
8
+ */
9
+
10
+ import './javascriptcore-4.1-ambient.d.ts';
11
+
12
+ import JavaScriptCore from './javascriptcore-4.1.js';
13
+ export default JavaScriptCore;
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import JavaScriptCore from './javascriptcore-4.1.js';
4
+ export default JavaScriptCore;
5
+
@@ -1,8 +1,9 @@
1
-
2
1
  declare module 'gi://JavaScriptCore?version=4.1' {
3
- import JavaScriptCore from '@girs/javascriptcore-4.1';
4
- export default JavaScriptCore;
2
+ import JavaScriptCore41 from '@girs/javascriptcore-4.1';
3
+ export default JavaScriptCore41;
5
4
  }
6
5
 
7
-
8
-
6
+ declare module 'gi://JavaScriptCore' {
7
+ import JavaScriptCore41 from 'gi://JavaScriptCore?version=4.1';
8
+ export default JavaScriptCore41;
9
+ }
@@ -1,2 +1 @@
1
1
  // Module import type definition not generated, otherwise this would cause a type conflict, this is because several GIR modules were generated with the same namespace: "JavaScriptCore"
2
-
@@ -1,22 +1,21 @@
1
- /*
1
+ /**
2
2
  * Type Definitions for Gjs (https://gjs.guide/)
3
3
  *
4
4
  * These type definitions are automatically generated, do not edit them by hand.
5
5
  * If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gir
6
+ *
7
+ * The based EJS template file is used for the generated .d.ts file of each GIR module like Gtk-4.0, GObject-2.0, ...
6
8
  */
7
9
 
8
- import './javascriptcore-4.1-ambient.d.ts';
9
-
10
- import './javascriptcore-4.1-import.d.ts';
11
-
12
- /**
13
- * JavaScriptCore-4.1
14
- */
15
-
10
+ // Module dependencies
16
11
  import type GObject from '@girs/gobject-2.0';
17
12
  import type GLib from '@girs/glib-2.0';
18
13
 
19
14
  export namespace JavaScriptCore {
15
+ /**
16
+ * JavaScriptCore-4.1
17
+ */
18
+
20
19
  /**
21
20
  * Enum values to specify a mode to check for syntax errors in jsc_context_check_syntax().
22
21
  */
@@ -1378,4 +1377,5 @@ export namespace JavaScriptCore {
1378
1377
  }
1379
1378
 
1380
1379
  export default JavaScriptCore;
1380
+
1381
1381
  // END
@@ -1,6 +1,5 @@
1
1
 
2
- // @ts-expect-error
3
- import JavaScriptCore from 'gi://JavaScriptCore?version=4.1';
4
- export { JavaScriptCore };
5
- export default JavaScriptCore;
2
+ // @ts-expect-error
3
+ import JavaScriptCore from 'gi://JavaScriptCore?version=4.1';
4
+ export default JavaScriptCore;
6
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/javascriptcore-4.1",
3
- "version": "2.44.2-4.0.0-beta.6",
3
+ "version": "2.44.2-4.0.0-beta.8",
4
4
  "description": "GJS TypeScript type definitions for JavaScriptCore-4.1, generated from library version 2.44.2",
5
5
  "type": "module",
6
6
  "module": "javascriptcore-4.1.js",
@@ -16,19 +16,24 @@
16
16
  "import": "./javascriptcore-4.1-import.js",
17
17
  "default": "./javascriptcore-4.1-import.js"
18
18
  },
19
- ".": {
19
+ "./javascriptcore-4.1": {
20
20
  "types": "./javascriptcore-4.1.d.ts",
21
21
  "import": "./javascriptcore-4.1.js",
22
22
  "default": "./javascriptcore-4.1.js"
23
+ },
24
+ ".": {
25
+ "types": "./index.d.ts",
26
+ "import": "./index.js",
27
+ "default": "./index.js"
23
28
  }
24
29
  },
25
30
  "scripts": {
26
31
  "test": "tsc --project tsconfig.json"
27
32
  },
28
33
  "dependencies": {
29
- "@girs/gjs": "^4.0.0-beta.6",
30
- "@girs/glib-2.0": "^2.80.3-4.0.0-beta.6",
31
- "@girs/gobject-2.0": "^2.80.3-4.0.0-beta.6"
34
+ "@girs/gjs": "^4.0.0-beta.8",
35
+ "@girs/glib-2.0": "^2.80.2-4.0.0-beta.8",
36
+ "@girs/gobject-2.0": "^2.80.2-4.0.0-beta.8"
32
37
  },
33
38
  "devDependencies": {
34
39
  "typescript": "*"
package/tsconfig.json CHANGED
@@ -2,11 +2,11 @@
2
2
  "compilerOptions": {
3
3
  // General settings for code interpretation
4
4
  "target": "ESNext",
5
- "module": "ESNext",
5
+ "module": "NodeNext",
6
6
  "lib": ["ESNext"],
7
7
  "types": [],
8
8
  "experimentalDecorators": true,
9
- "moduleResolution": "node",
9
+ "moduleResolution": "NodeNext",
10
10
  "noEmit": true,
11
11
  "noEmitOnError": false,
12
12
  "baseUrl": "./",