@girs/arrowcuda-1.0 1.0.0-3.2.6 → 1.0.0-3.2.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/arrowcuda-1.0.d.cts +6 -6
- package/arrowcuda-1.0.d.ts +6 -6
- 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 ArrowCUDA-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for ArrowCUDA-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.7.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/arrowcuda-1.0.d.cts
CHANGED
|
@@ -51,13 +51,13 @@ export interface Buffer {
|
|
|
51
51
|
* @param key name of the key for that association
|
|
52
52
|
* @returns the data if found, or %NULL if no such data exists.
|
|
53
53
|
*/
|
|
54
|
-
get_data(key: string
|
|
54
|
+
get_data(key: string): any | null
|
|
55
55
|
/**
|
|
56
56
|
* Gets a named field from the objects table of associations (see g_object_set_data()).
|
|
57
57
|
* @param key name of the key for that association
|
|
58
58
|
* @returns the data if found, or %NULL if no such data exists.
|
|
59
59
|
*/
|
|
60
|
-
get_data(key: string
|
|
60
|
+
get_data(key: string): any | null
|
|
61
61
|
|
|
62
62
|
// Class property signals of ArrowCUDA-1.0.ArrowCUDA.Buffer
|
|
63
63
|
|
|
@@ -410,7 +410,7 @@ export interface HostBuffer {
|
|
|
410
410
|
* @param key name of the key
|
|
411
411
|
* @param data data to associate with that key
|
|
412
412
|
*/
|
|
413
|
-
set_data(key: string
|
|
413
|
+
set_data(key: string, data: any | null): void
|
|
414
414
|
/**
|
|
415
415
|
* Each object carries around a table of associations from
|
|
416
416
|
* strings to pointers. This function lets you set an association.
|
|
@@ -425,7 +425,7 @@ export interface HostBuffer {
|
|
|
425
425
|
* @param key name of the key
|
|
426
426
|
* @param data data to associate with that key
|
|
427
427
|
*/
|
|
428
|
-
set_data(key: string
|
|
428
|
+
set_data(key: string, data: any | null): void
|
|
429
429
|
slice(offset: number, size: number): Arrow.MutableBuffer
|
|
430
430
|
|
|
431
431
|
// Overloads of slice
|
|
@@ -441,13 +441,13 @@ export interface HostBuffer {
|
|
|
441
441
|
* @param key name of the key for that association
|
|
442
442
|
* @returns the data if found, or %NULL if no such data exists.
|
|
443
443
|
*/
|
|
444
|
-
get_data(key: string
|
|
444
|
+
get_data(key: string): any | null
|
|
445
445
|
/**
|
|
446
446
|
* Gets a named field from the objects table of associations (see g_object_set_data()).
|
|
447
447
|
* @param key name of the key for that association
|
|
448
448
|
* @returns the data if found, or %NULL if no such data exists.
|
|
449
449
|
*/
|
|
450
|
-
get_data(key: string
|
|
450
|
+
get_data(key: string): any | null
|
|
451
451
|
|
|
452
452
|
// Class property signals of ArrowCUDA-1.0.ArrowCUDA.HostBuffer
|
|
453
453
|
|
package/arrowcuda-1.0.d.ts
CHANGED
|
@@ -53,13 +53,13 @@ interface Buffer {
|
|
|
53
53
|
* @param key name of the key for that association
|
|
54
54
|
* @returns the data if found, or %NULL if no such data exists.
|
|
55
55
|
*/
|
|
56
|
-
get_data(key: string
|
|
56
|
+
get_data(key: string): any | null
|
|
57
57
|
/**
|
|
58
58
|
* Gets a named field from the objects table of associations (see g_object_set_data()).
|
|
59
59
|
* @param key name of the key for that association
|
|
60
60
|
* @returns the data if found, or %NULL if no such data exists.
|
|
61
61
|
*/
|
|
62
|
-
get_data(key: string
|
|
62
|
+
get_data(key: string): any | null
|
|
63
63
|
|
|
64
64
|
// Class property signals of ArrowCUDA-1.0.ArrowCUDA.Buffer
|
|
65
65
|
|
|
@@ -412,7 +412,7 @@ interface HostBuffer {
|
|
|
412
412
|
* @param key name of the key
|
|
413
413
|
* @param data data to associate with that key
|
|
414
414
|
*/
|
|
415
|
-
set_data(key: string
|
|
415
|
+
set_data(key: string, data: any | null): void
|
|
416
416
|
/**
|
|
417
417
|
* Each object carries around a table of associations from
|
|
418
418
|
* strings to pointers. This function lets you set an association.
|
|
@@ -427,7 +427,7 @@ interface HostBuffer {
|
|
|
427
427
|
* @param key name of the key
|
|
428
428
|
* @param data data to associate with that key
|
|
429
429
|
*/
|
|
430
|
-
set_data(key: string
|
|
430
|
+
set_data(key: string, data: any | null): void
|
|
431
431
|
slice(offset: number, size: number): Arrow.MutableBuffer
|
|
432
432
|
|
|
433
433
|
// Overloads of slice
|
|
@@ -443,13 +443,13 @@ interface HostBuffer {
|
|
|
443
443
|
* @param key name of the key for that association
|
|
444
444
|
* @returns the data if found, or %NULL if no such data exists.
|
|
445
445
|
*/
|
|
446
|
-
get_data(key: string
|
|
446
|
+
get_data(key: string): any | null
|
|
447
447
|
/**
|
|
448
448
|
* Gets a named field from the objects table of associations (see g_object_set_data()).
|
|
449
449
|
* @param key name of the key for that association
|
|
450
450
|
* @returns the data if found, or %NULL if no such data exists.
|
|
451
451
|
*/
|
|
452
|
-
get_data(key: string
|
|
452
|
+
get_data(key: string): any | null
|
|
453
453
|
|
|
454
454
|
// Class property signals of ArrowCUDA-1.0.ArrowCUDA.HostBuffer
|
|
455
455
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/arrowcuda-1.0",
|
|
3
|
-
"version": "1.0.0-3.2.
|
|
3
|
+
"version": "1.0.0-3.2.7",
|
|
4
4
|
"description": "GJS TypeScript type definitions for ArrowCUDA-1.0, generated from library version 1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "arrowcuda-1.0.js",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit arrowcuda-1.0.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/arrow-1.0": "^7.0.0-3.2.
|
|
29
|
-
"@girs/gio-2.0": "^2.78.0-3.2.
|
|
30
|
-
"@girs/gjs": "^3.2.
|
|
31
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
32
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
28
|
+
"@girs/arrow-1.0": "^7.0.0-3.2.7",
|
|
29
|
+
"@girs/gio-2.0": "^2.78.0-3.2.7",
|
|
30
|
+
"@girs/gjs": "^3.2.7",
|
|
31
|
+
"@girs/glib-2.0": "^2.78.0-3.2.7",
|
|
32
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.7"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"typescript": "*"
|