@girs/gsf-1 1.0.0-3.2.9 → 1.0.0-3.3.0
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/gsf-1.d.cts +4 -4
- package/gsf-1.d.ts +4 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gsf-1, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.
|
|
8
|
+
GJS TypeScript type definitions for Gsf-1, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.3.0.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gsf-1.d.cts
CHANGED
|
@@ -699,7 +699,7 @@ export class Blob extends GObject.Object {
|
|
|
699
699
|
* copied internally, so the blob does not hold references to external chunks
|
|
700
700
|
* of memory.
|
|
701
701
|
* @constructor
|
|
702
|
-
* @param data_to_copy
|
|
702
|
+
* @param data_to_copy Data which will be copied into the blob, or %NULL if `size` is zero.
|
|
703
703
|
* @returns A newly-created #GsfBlob, or %NULL if the data could not be copied. Error domain: #GSF_ERROR Possible errors: #GSF_ERROR_OUT_OF_MEMORY if the @data_to_copy could not be copied.
|
|
704
704
|
*/
|
|
705
705
|
constructor(data_to_copy: Uint8Array)
|
|
@@ -709,7 +709,7 @@ export class Blob extends GObject.Object {
|
|
|
709
709
|
* copied internally, so the blob does not hold references to external chunks
|
|
710
710
|
* of memory.
|
|
711
711
|
* @constructor
|
|
712
|
-
* @param data_to_copy
|
|
712
|
+
* @param data_to_copy Data which will be copied into the blob, or %NULL if `size` is zero.
|
|
713
713
|
* @returns A newly-created #GsfBlob, or %NULL if the data could not be copied. Error domain: #GSF_ERROR Possible errors: #GSF_ERROR_OUT_OF_MEMORY if the @data_to_copy could not be copied.
|
|
714
714
|
*/
|
|
715
715
|
static new(data_to_copy: Uint8Array): Blob
|
|
@@ -1124,7 +1124,7 @@ export interface InfileMSVBA {
|
|
|
1124
1124
|
|
|
1125
1125
|
/**
|
|
1126
1126
|
* a collection of names and source code.
|
|
1127
|
-
* @returns
|
|
1127
|
+
* @returns A #GHashTable of names and source code (unknown encoding).
|
|
1128
1128
|
*/
|
|
1129
1129
|
get_modules(): GLib.HashTable | null
|
|
1130
1130
|
/**
|
|
@@ -1443,7 +1443,7 @@ export interface Input {
|
|
|
1443
1443
|
* Read `num_bytes`. Does not change the current position if there
|
|
1444
1444
|
* is an error. Will only read if the entire amount can be read.
|
|
1445
1445
|
* @param num_bytes number of bytes to read
|
|
1446
|
-
* @returns
|
|
1446
|
+
* @returns the data read.
|
|
1447
1447
|
*/
|
|
1448
1448
|
read(num_bytes: number): Uint8Array
|
|
1449
1449
|
/**
|
package/gsf-1.d.ts
CHANGED
|
@@ -701,7 +701,7 @@ class Blob extends GObject.Object {
|
|
|
701
701
|
* copied internally, so the blob does not hold references to external chunks
|
|
702
702
|
* of memory.
|
|
703
703
|
* @constructor
|
|
704
|
-
* @param data_to_copy
|
|
704
|
+
* @param data_to_copy Data which will be copied into the blob, or %NULL if `size` is zero.
|
|
705
705
|
* @returns A newly-created #GsfBlob, or %NULL if the data could not be copied. Error domain: #GSF_ERROR Possible errors: #GSF_ERROR_OUT_OF_MEMORY if the @data_to_copy could not be copied.
|
|
706
706
|
*/
|
|
707
707
|
constructor(data_to_copy: Uint8Array)
|
|
@@ -711,7 +711,7 @@ class Blob extends GObject.Object {
|
|
|
711
711
|
* copied internally, so the blob does not hold references to external chunks
|
|
712
712
|
* of memory.
|
|
713
713
|
* @constructor
|
|
714
|
-
* @param data_to_copy
|
|
714
|
+
* @param data_to_copy Data which will be copied into the blob, or %NULL if `size` is zero.
|
|
715
715
|
* @returns A newly-created #GsfBlob, or %NULL if the data could not be copied. Error domain: #GSF_ERROR Possible errors: #GSF_ERROR_OUT_OF_MEMORY if the @data_to_copy could not be copied.
|
|
716
716
|
*/
|
|
717
717
|
static new(data_to_copy: Uint8Array): Blob
|
|
@@ -1126,7 +1126,7 @@ interface InfileMSVBA {
|
|
|
1126
1126
|
|
|
1127
1127
|
/**
|
|
1128
1128
|
* a collection of names and source code.
|
|
1129
|
-
* @returns
|
|
1129
|
+
* @returns A #GHashTable of names and source code (unknown encoding).
|
|
1130
1130
|
*/
|
|
1131
1131
|
get_modules(): GLib.HashTable | null
|
|
1132
1132
|
/**
|
|
@@ -1445,7 +1445,7 @@ interface Input {
|
|
|
1445
1445
|
* Read `num_bytes`. Does not change the current position if there
|
|
1446
1446
|
* is an error. Will only read if the entire amount can be read.
|
|
1447
1447
|
* @param num_bytes number of bytes to read
|
|
1448
|
-
* @returns
|
|
1448
|
+
* @returns the data read.
|
|
1449
1449
|
*/
|
|
1450
1450
|
read(num_bytes: number): Uint8Array
|
|
1451
1451
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gsf-1",
|
|
3
|
-
"version": "1.0.0-3.
|
|
3
|
+
"version": "1.0.0-3.3.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gsf-1, generated from library version 1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gsf-1.js",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gsf-1.d.cts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gio-2.0": "^2.78.0-3.
|
|
35
|
-
"@girs/gjs": "^3.
|
|
36
|
-
"@girs/glib-2.0": "^2.78.0-3.
|
|
37
|
-
"@girs/gobject-2.0": "^2.78.0-3.
|
|
38
|
-
"@girs/libxml2-2.0": "^2.0.0-3.
|
|
34
|
+
"@girs/gio-2.0": "^2.78.0-3.3.0",
|
|
35
|
+
"@girs/gjs": "^3.3.0",
|
|
36
|
+
"@girs/glib-2.0": "^2.78.0-3.3.0",
|
|
37
|
+
"@girs/gobject-2.0": "^2.78.0-3.3.0",
|
|
38
|
+
"@girs/libxml2-2.0": "^2.0.0-3.3.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"typescript": "*"
|