@girs/gstinterfaces-0.10 0.10.0-3.2.6 → 0.10.0-3.2.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
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for GstInterfaces-0.10, generated from library version 0.10.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for GstInterfaces-0.10, generated from library version 0.10.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gstinterfaces-0.10.d.cts
CHANGED
|
@@ -749,7 +749,7 @@ export interface PropertyProbe {
|
|
|
749
749
|
* @param property_name the name of the property to get
|
|
750
750
|
* @param value return location for the property value
|
|
751
751
|
*/
|
|
752
|
-
get_property(property_name: string
|
|
752
|
+
get_property(property_name: string, value: any): void
|
|
753
753
|
/**
|
|
754
754
|
* Gets the possible (probed) values for the given property,
|
|
755
755
|
* requires the property to have been probed before.
|
|
@@ -1441,7 +1441,6 @@ export module MixerTrack {
|
|
|
1441
1441
|
// Own constructor properties of GstInterfaces-0.10.GstInterfaces.MixerTrack
|
|
1442
1442
|
|
|
1443
1443
|
index?: number | null
|
|
1444
|
-
untranslated_label?: string | null
|
|
1445
1444
|
untranslatedLabel?: string | null
|
|
1446
1445
|
}
|
|
1447
1446
|
|
|
@@ -1455,7 +1454,6 @@ export interface MixerTrack {
|
|
|
1455
1454
|
readonly maxVolume: number
|
|
1456
1455
|
readonly minVolume: number
|
|
1457
1456
|
readonly numChannels: number
|
|
1458
|
-
readonly untranslated_label: string
|
|
1459
1457
|
readonly untranslatedLabel: string
|
|
1460
1458
|
|
|
1461
1459
|
// Own fields of GstInterfaces-0.10.GstInterfaces.MixerTrack
|
package/gstinterfaces-0.10.d.ts
CHANGED
|
@@ -751,7 +751,7 @@ interface PropertyProbe {
|
|
|
751
751
|
* @param property_name the name of the property to get
|
|
752
752
|
* @param value return location for the property value
|
|
753
753
|
*/
|
|
754
|
-
get_property(property_name: string
|
|
754
|
+
get_property(property_name: string, value: any): void
|
|
755
755
|
/**
|
|
756
756
|
* Gets the possible (probed) values for the given property,
|
|
757
757
|
* requires the property to have been probed before.
|
|
@@ -1443,7 +1443,6 @@ module MixerTrack {
|
|
|
1443
1443
|
// Own constructor properties of GstInterfaces-0.10.GstInterfaces.MixerTrack
|
|
1444
1444
|
|
|
1445
1445
|
index?: number | null
|
|
1446
|
-
untranslated_label?: string | null
|
|
1447
1446
|
untranslatedLabel?: string | null
|
|
1448
1447
|
}
|
|
1449
1448
|
|
|
@@ -1457,7 +1456,6 @@ interface MixerTrack {
|
|
|
1457
1456
|
readonly maxVolume: number
|
|
1458
1457
|
readonly minVolume: number
|
|
1459
1458
|
readonly numChannels: number
|
|
1460
|
-
readonly untranslated_label: string
|
|
1461
1459
|
readonly untranslatedLabel: string
|
|
1462
1460
|
|
|
1463
1461
|
// Own fields of GstInterfaces-0.10.GstInterfaces.MixerTrack
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gstinterfaces-0.10",
|
|
3
|
-
"version": "0.10.0-3.2.
|
|
3
|
+
"version": "0.10.0-3.2.8",
|
|
4
4
|
"description": "GJS TypeScript type definitions for GstInterfaces-0.10, generated from library version 0.10.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gstinterfaces-0.10.js",
|
|
7
7
|
"main": "gstinterfaces-0.10.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./gstinterfaces-0.10-ambient.d.ts",
|
|
11
|
+
"default": "./gstinterfaces-0.10-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./gstinterfaces-0.10-import.d.ts",
|
|
15
|
+
"default": "./gstinterfaces-0.10-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./gstinterfaces-0.10.d.ts",
|
|
@@ -25,12 +31,12 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gstinterfaces-0.10.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/gjs": "^3.2.
|
|
29
|
-
"@girs/glib-2.0": "^2.
|
|
30
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
31
|
-
"@girs/gobject-2.0": "^2.
|
|
32
|
-
"@girs/gst-0.10": "^0.10.29-3.2.
|
|
33
|
-
"@girs/libxml2-2.0": "^2.0.0-3.2.
|
|
34
|
+
"@girs/gjs": "^3.2.8",
|
|
35
|
+
"@girs/glib-2.0": "^2.77.0-3.2.8",
|
|
36
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.8",
|
|
37
|
+
"@girs/gobject-2.0": "^2.77.0-3.2.8",
|
|
38
|
+
"@girs/gst-0.10": "^0.10.29-3.2.8",
|
|
39
|
+
"@girs/libxml2-2.0": "^2.0.0-3.2.8"
|
|
34
40
|
},
|
|
35
41
|
"devDependencies": {
|
|
36
42
|
"typescript": "*"
|
|
@@ -47,7 +53,7 @@
|
|
|
47
53
|
"license": "MIT",
|
|
48
54
|
"repository": {
|
|
49
55
|
"type": "git",
|
|
50
|
-
"url": "git+https://github.com/gjsify/
|
|
56
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
51
57
|
},
|
|
52
58
|
"bugs": {
|
|
53
59
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|