@girs/deviced-1.0 3.27.4-4.0.0-beta.21
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 +86 -0
- package/deviced-1.0-ambient.d.ts +9 -0
- package/deviced-1.0-ambient.js +2 -0
- package/deviced-1.0-import.d.ts +9 -0
- package/deviced-1.0-import.js +3 -0
- package/deviced-1.0.d.ts +1603 -0
- package/deviced-1.0.js +5 -0
- package/index.d.ts +15 -0
- package/index.js +5 -0
- package/package.json +61 -0
- package/tsconfig.json +25 -0
- package/typedoc.json +7 -0
package/deviced-1.0.js
ADDED
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 './deviced-1.0-ambient.d.ts';
|
|
11
|
+
|
|
12
|
+
import './deviced-1.0-import.d.ts';
|
|
13
|
+
|
|
14
|
+
import Deviced from './deviced-1.0.js';
|
|
15
|
+
export default Deviced;
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@girs/deviced-1.0",
|
|
3
|
+
"version": "3.27.4-4.0.0-beta.21",
|
|
4
|
+
"description": "GJS TypeScript type definitions for Deviced-1.0, generated from library version 3.27.4",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "deviced-1.0.js",
|
|
7
|
+
"main": "deviced-1.0.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./deviced-1.0-ambient.d.ts",
|
|
11
|
+
"import": "./deviced-1.0-ambient.js",
|
|
12
|
+
"default": "./deviced-1.0-ambient.js"
|
|
13
|
+
},
|
|
14
|
+
"./import": {
|
|
15
|
+
"types": "./deviced-1.0-import.d.ts",
|
|
16
|
+
"import": "./deviced-1.0-import.js",
|
|
17
|
+
"default": "./deviced-1.0-import.js"
|
|
18
|
+
},
|
|
19
|
+
"./deviced-1.0": {
|
|
20
|
+
"types": "./deviced-1.0.d.ts",
|
|
21
|
+
"import": "./deviced-1.0.js",
|
|
22
|
+
"default": "./deviced-1.0.js"
|
|
23
|
+
},
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./index.d.ts",
|
|
26
|
+
"import": "./index.js",
|
|
27
|
+
"default": "./index.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"test": "tsc --project tsconfig.json"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@girs/gio-2.0": "^2.83.3-4.0.0-beta.21",
|
|
35
|
+
"@girs/gjs": "^4.0.0-beta.21",
|
|
36
|
+
"@girs/glib-2.0": "^2.83.3-4.0.0-beta.21",
|
|
37
|
+
"@girs/gmodule-2.0": "^2.0.0-4.0.0-beta.21",
|
|
38
|
+
"@girs/gobject-2.0": "^2.83.3-4.0.0-beta.21"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"typescript": "*"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"Gir",
|
|
45
|
+
"TypeScript",
|
|
46
|
+
"types",
|
|
47
|
+
"GObject-Introspection",
|
|
48
|
+
"GJS",
|
|
49
|
+
"Deviced-1.0"
|
|
50
|
+
],
|
|
51
|
+
"author": "ts-for-gir",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
56
|
+
},
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/gjsify/ts-for-gir/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/gjsify/types/tree/main/deviced-1.0#readme"
|
|
61
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
// General settings for code interpretation
|
|
4
|
+
"target": "ESNext",
|
|
5
|
+
"module": "NodeNext",
|
|
6
|
+
"lib": ["ESNext"],
|
|
7
|
+
"types": [],
|
|
8
|
+
"experimentalDecorators": true,
|
|
9
|
+
"moduleResolution": "NodeNext",
|
|
10
|
+
"noEmit": true,
|
|
11
|
+
"noEmitOnError": false,
|
|
12
|
+
"baseUrl": "./",
|
|
13
|
+
"rootDir": ".",
|
|
14
|
+
// General settings for code generation
|
|
15
|
+
"removeComments": false,
|
|
16
|
+
"inlineSourceMap": false,
|
|
17
|
+
"inlineSources": false,
|
|
18
|
+
"newLine": "LF",
|
|
19
|
+
// Show diagnostics
|
|
20
|
+
"diagnostics": true
|
|
21
|
+
},
|
|
22
|
+
"include": ["./deviced-1.0.d.ts"]
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|