@girs/peas-2 2.0.0-4.0.0-beta.6 → 2.0.0-4.0.0-beta.7
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/index.d.ts +15 -0
- package/index.js +5 -0
- package/package.json +12 -7
- package/peas-2-ambient.d.ts +2 -5
- package/peas-2-import.d.ts +0 -3
- package/peas-2.d.ts +9 -7
- package/peas-2.js +3 -4
- package/tsconfig.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Peas-2, generated from library version 2.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.
|
|
8
|
+
GJS TypeScript type definitions for Peas-2, generated from library version 2.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.7.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
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 './peas-2-ambient.d.ts';
|
|
11
|
+
|
|
12
|
+
import './peas-2-import.d.ts';
|
|
13
|
+
|
|
14
|
+
import Peas from './peas-2.js';
|
|
15
|
+
export default Peas;
|
package/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/peas-2",
|
|
3
|
-
"version": "2.0.0-4.0.0-beta.
|
|
3
|
+
"version": "2.0.0-4.0.0-beta.7",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Peas-2, generated from library version 2.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "peas-2.js",
|
|
@@ -16,21 +16,26 @@
|
|
|
16
16
|
"import": "./peas-2-import.js",
|
|
17
17
|
"default": "./peas-2-import.js"
|
|
18
18
|
},
|
|
19
|
-
"
|
|
19
|
+
"./peas-2": {
|
|
20
20
|
"types": "./peas-2.d.ts",
|
|
21
21
|
"import": "./peas-2.js",
|
|
22
22
|
"default": "./peas-2.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/gio-2.0": "^2.80.
|
|
30
|
-
"@girs/gjs": "^4.0.0-beta.
|
|
31
|
-
"@girs/glib-2.0": "^2.80.
|
|
32
|
-
"@girs/gmodule-2.0": "^2.0.0-4.0.0-beta.
|
|
33
|
-
"@girs/gobject-2.0": "^2.80.
|
|
34
|
+
"@girs/gio-2.0": "^2.80.2-4.0.0-beta.7",
|
|
35
|
+
"@girs/gjs": "^4.0.0-beta.7",
|
|
36
|
+
"@girs/glib-2.0": "^2.80.2-4.0.0-beta.7",
|
|
37
|
+
"@girs/gmodule-2.0": "^2.0.0-4.0.0-beta.7",
|
|
38
|
+
"@girs/gobject-2.0": "^2.80.2-4.0.0-beta.7"
|
|
34
39
|
},
|
|
35
40
|
"devDependencies": {
|
|
36
41
|
"typescript": "*"
|
package/peas-2-ambient.d.ts
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
|
|
2
1
|
declare module 'gi://Peas?version=2' {
|
|
3
|
-
import
|
|
4
|
-
export default
|
|
2
|
+
import Peas2 from '@girs/peas-2';
|
|
3
|
+
export default Peas2;
|
|
5
4
|
}
|
|
6
5
|
|
|
7
6
|
declare module 'gi://Peas' {
|
|
8
7
|
import Peas2 from 'gi://Peas?version=2';
|
|
9
8
|
export default Peas2;
|
|
10
9
|
}
|
|
11
|
-
|
|
12
|
-
|
package/peas-2-import.d.ts
CHANGED
package/peas-2.d.ts
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Peas-2
|
|
12
|
-
*/
|
|
13
|
-
|
|
10
|
+
// Module dependencies
|
|
14
11
|
import type Gio from '@girs/gio-2.0';
|
|
15
12
|
import type GObject from '@girs/gobject-2.0';
|
|
16
13
|
import type GLib from '@girs/glib-2.0';
|
|
17
14
|
import type GModule from '@girs/gmodule-2.0';
|
|
18
15
|
|
|
19
16
|
export namespace Peas {
|
|
17
|
+
/**
|
|
18
|
+
* Peas-2
|
|
19
|
+
*/
|
|
20
|
+
|
|
20
21
|
/**
|
|
21
22
|
* These identify the various errors that can occur while
|
|
22
23
|
* loading a plugin.
|
|
@@ -2323,4 +2324,5 @@ export namespace Peas {
|
|
|
2323
2324
|
}
|
|
2324
2325
|
|
|
2325
2326
|
export default Peas;
|
|
2327
|
+
|
|
2326
2328
|
// END
|
package/peas-2.js
CHANGED
package/tsconfig.json
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
// General settings for code interpretation
|
|
4
4
|
"target": "ESNext",
|
|
5
|
-
"module": "
|
|
5
|
+
"module": "NodeNext",
|
|
6
6
|
"lib": ["ESNext"],
|
|
7
7
|
"types": [],
|
|
8
8
|
"experimentalDecorators": true,
|
|
9
|
-
"moduleResolution": "
|
|
9
|
+
"moduleResolution": "NodeNext",
|
|
10
10
|
"noEmit": true,
|
|
11
11
|
"noEmitOnError": false,
|
|
12
12
|
"baseUrl": "./",
|