@girs/gda-5.0 4.0.4

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/gda-5.0.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import Gda from 'gi://Gda?version=5.0';
4
+ export default Gda;
5
+
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 './gda-5.0-ambient.d.ts';
11
+
12
+
13
+ import Gda from './gda-5.0.js';
14
+ export default Gda;
15
+
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import Gda from './gda-5.0.js';
4
+ export default Gda;
5
+
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@girs/gda-5.0",
3
+ "version": "4.0.4",
4
+ "libraryVersion": "5.0.0",
5
+ "description": "GJS TypeScript type definitions for Gda-5.0, generated from library version 5.0.0",
6
+ "type": "module",
7
+ "module": "gda-5.0.js",
8
+ "main": "gda-5.0.js",
9
+ "exports": {
10
+ "./ambient": {
11
+ "types": "./gda-5.0-ambient.d.ts",
12
+ "import": "./gda-5.0-ambient.js",
13
+ "default": "./gda-5.0-ambient.js"
14
+ },
15
+ "./import": {
16
+ "types": "./gda-5.0-import.d.ts",
17
+ "import": "./gda-5.0-import.js",
18
+ "default": "./gda-5.0-import.js"
19
+ },
20
+ "./gda-5.0": {
21
+ "types": "./gda-5.0.d.ts",
22
+ "import": "./gda-5.0.js",
23
+ "default": "./gda-5.0.js"
24
+ },
25
+ ".": {
26
+ "types": "./index.d.ts",
27
+ "import": "./index.js",
28
+ "default": "./index.js"
29
+ }
30
+ },
31
+ "scripts": {
32
+ "test": "tsc --project tsconfig.json"
33
+ },
34
+ "dependencies": {
35
+ "@girs/gjs": "^4.0.4",
36
+ "@girs/libxml2-2.0": "^4.0.4",
37
+ "@girs/gobject-2.0": "^4.0.4",
38
+ "@girs/glib-2.0": "^4.0.4" },
39
+ "devDependencies": {
40
+ "typescript": "*"
41
+ },
42
+ "keywords": ["Gir", "TypeScript", "types", "GObject-Introspection", "GJS", "Gda-5.0"],
43
+ "author": "ts-for-gir",
44
+ "license": "MIT",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/gjsify/types.git"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
51
+ },
52
+ "homepage": "https://github.com/gjsify/types/tree/main/gda-5.0#readme"
53
+ }
54
+
55
+
package/tsconfig.json ADDED
@@ -0,0 +1,38 @@
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
+ "rootDir": ".",
13
+ // General settings for code generation
14
+ "removeComments": false,
15
+ "inlineSourceMap": false,
16
+ "inlineSources": false,
17
+ "newLine": "LF",
18
+ // Show diagnostics
19
+ "diagnostics": true,
20
+ "paths": {
21
+ "@girs/libxml2-2.0": [
22
+ "../libxml2-2.0/index.d.ts"
23
+ ],
24
+ "@girs/gobject-2.0": [
25
+ "../gobject-2.0/index.d.ts"
26
+ ],
27
+ "@girs/glib-2.0": [
28
+ "../glib-2.0/index.d.ts"
29
+ ],
30
+ "@girs/gjs": [
31
+ "../gjs/index.d.ts"
32
+ ]
33
+ }
34
+ },
35
+ "include": ["./gda-5.0.d.ts"]
36
+ }
37
+
38
+
package/typedoc.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "entryPoints": ["./gda-5.0.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "Gda-5.0",
5
+ "tsconfig": "./tsconfig.json",
6
+ "skipErrorChecking": true,
7
+ "highlightLanguages": ["typescript", "javascript", "c", "cpp", "xml", "bash", "json", "css"]
8
+ }
9
+