@girs/gpseq-1.0 1.0.0-3.2.7 → 1.0.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 +1 -1
- package/gpseq-1.0-ambient.js +2 -0
- package/gpseq-1.0-import.js +3 -0
- package/gpseq-1.0.d.cts +1 -118
- package/gpseq-1.0.d.ts +1 -118
- package/package.json +15 -9
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gpseq-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 Gpseq-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gpseq-1.0.d.cts
CHANGED
|
@@ -508,9 +508,7 @@ export interface Spliterator extends GObject.Object {
|
|
|
508
508
|
|
|
509
509
|
// Own properties of Gpseq-1.0.Gpseq.Spliterator
|
|
510
510
|
|
|
511
|
-
readonly estimated_size: number
|
|
512
511
|
readonly estimatedSize: number
|
|
513
|
-
readonly is_size_known: boolean
|
|
514
512
|
readonly isSizeKnown: boolean
|
|
515
513
|
|
|
516
514
|
// Owm methods of Gpseq-1.0.Gpseq.Spliterator
|
|
@@ -699,9 +697,6 @@ export module ArraySpliterator {
|
|
|
699
697
|
|
|
700
698
|
// Own constructor properties of Gpseq-1.0.Gpseq.ArraySpliterator
|
|
701
699
|
|
|
702
|
-
g_type?: GObject.GType | null
|
|
703
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
704
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
705
700
|
gType?: GObject.GType | null
|
|
706
701
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
707
702
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -713,11 +708,8 @@ export interface ArraySpliterator extends Spliterator {
|
|
|
713
708
|
|
|
714
709
|
// Own properties of Gpseq-1.0.Gpseq.ArraySpliterator
|
|
715
710
|
|
|
716
|
-
readonly g_type: GObject.GType
|
|
717
711
|
readonly gType: GObject.GType
|
|
718
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
719
712
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
720
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
721
713
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
722
714
|
|
|
723
715
|
// Class property signals of Gpseq-1.0.Gpseq.ArraySpliterator
|
|
@@ -766,13 +758,10 @@ export module ForkJoinTask {
|
|
|
766
758
|
|
|
767
759
|
// Own constructor properties of Gpseq-1.0.Gpseq.ForkJoinTask
|
|
768
760
|
|
|
769
|
-
g_type?: GObject.GType | null
|
|
770
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
771
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
772
|
-
depth?: number | null
|
|
773
761
|
gType?: GObject.GType | null
|
|
774
762
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
775
763
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
764
|
+
depth?: number | null
|
|
776
765
|
}
|
|
777
766
|
|
|
778
767
|
}
|
|
@@ -781,25 +770,18 @@ export interface ForkJoinTask extends Task {
|
|
|
781
770
|
|
|
782
771
|
// Own properties of Gpseq-1.0.Gpseq.ForkJoinTask
|
|
783
772
|
|
|
784
|
-
readonly g_type: GObject.GType
|
|
785
773
|
readonly gType: GObject.GType
|
|
786
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
787
774
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
788
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
789
775
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
790
776
|
readonly parent: ForkJoinTask
|
|
791
777
|
readonly root: ForkJoinTask
|
|
792
|
-
readonly is_root: boolean
|
|
793
778
|
readonly isRoot: boolean
|
|
794
779
|
readonly threshold: number
|
|
795
|
-
readonly max_depth: number
|
|
796
780
|
readonly maxDepth: number
|
|
797
781
|
depth: number
|
|
798
782
|
readonly executor: Executor
|
|
799
783
|
readonly promise: Promise
|
|
800
|
-
readonly shared_result: ForkJoinTaskSharedResult
|
|
801
784
|
readonly sharedResult: ForkJoinTaskSharedResult
|
|
802
|
-
readonly is_cancelled: boolean
|
|
803
785
|
readonly isCancelled: boolean
|
|
804
786
|
|
|
805
787
|
// Owm methods of Gpseq-1.0.Gpseq.ForkJoinTask
|
|
@@ -923,9 +905,6 @@ export module FuncTask {
|
|
|
923
905
|
|
|
924
906
|
// Own constructor properties of Gpseq-1.0.Gpseq.FuncTask
|
|
925
907
|
|
|
926
|
-
g_type?: GObject.GType | null
|
|
927
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
928
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
929
908
|
gType?: GObject.GType | null
|
|
930
909
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
931
910
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -937,11 +916,8 @@ export interface FuncTask extends Task {
|
|
|
937
916
|
|
|
938
917
|
// Own properties of Gpseq-1.0.Gpseq.FuncTask
|
|
939
918
|
|
|
940
|
-
readonly g_type: GObject.GType
|
|
941
919
|
readonly gType: GObject.GType
|
|
942
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
943
920
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
944
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
945
921
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
946
922
|
|
|
947
923
|
// Class property signals of Gpseq-1.0.Gpseq.FuncTask
|
|
@@ -987,9 +963,6 @@ export module Future {
|
|
|
987
963
|
|
|
988
964
|
// Own constructor properties of Gpseq-1.0.Gpseq.Future
|
|
989
965
|
|
|
990
|
-
g_type?: GObject.GType | null
|
|
991
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
992
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
993
966
|
gType?: GObject.GType | null
|
|
994
967
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
995
968
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1001,11 +974,8 @@ export interface Future extends Gee.Hashable, Result {
|
|
|
1001
974
|
|
|
1002
975
|
// Own properties of Gpseq-1.0.Gpseq.Future
|
|
1003
976
|
|
|
1004
|
-
readonly g_type: GObject.GType
|
|
1005
977
|
readonly gType: GObject.GType
|
|
1006
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1007
978
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1008
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1009
979
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1010
980
|
readonly ready: boolean
|
|
1011
981
|
|
|
@@ -1075,9 +1045,6 @@ export module GenericArraySpliterator {
|
|
|
1075
1045
|
|
|
1076
1046
|
// Own constructor properties of Gpseq-1.0.Gpseq.GenericArraySpliterator
|
|
1077
1047
|
|
|
1078
|
-
g_type?: GObject.GType | null
|
|
1079
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1080
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1081
1048
|
gType?: GObject.GType | null
|
|
1082
1049
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1083
1050
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1089,11 +1056,8 @@ export interface GenericArraySpliterator extends Spliterator {
|
|
|
1089
1056
|
|
|
1090
1057
|
// Own properties of Gpseq-1.0.Gpseq.GenericArraySpliterator
|
|
1091
1058
|
|
|
1092
|
-
readonly g_type: GObject.GType
|
|
1093
1059
|
readonly gType: GObject.GType
|
|
1094
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1095
1060
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1096
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1097
1061
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1098
1062
|
|
|
1099
1063
|
// Class property signals of Gpseq-1.0.Gpseq.GenericArraySpliterator
|
|
@@ -1142,9 +1106,6 @@ export module IteratorSpliterator {
|
|
|
1142
1106
|
|
|
1143
1107
|
// Own constructor properties of Gpseq-1.0.Gpseq.IteratorSpliterator
|
|
1144
1108
|
|
|
1145
|
-
g_type?: GObject.GType | null
|
|
1146
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1147
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1148
1109
|
gType?: GObject.GType | null
|
|
1149
1110
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1150
1111
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1156,11 +1117,8 @@ export interface IteratorSpliterator extends Spliterator {
|
|
|
1156
1117
|
|
|
1157
1118
|
// Own properties of Gpseq-1.0.Gpseq.IteratorSpliterator
|
|
1158
1119
|
|
|
1159
|
-
readonly g_type: GObject.GType
|
|
1160
1120
|
readonly gType: GObject.GType
|
|
1161
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1162
1121
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1163
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1164
1122
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1165
1123
|
|
|
1166
1124
|
// Class property signals of Gpseq-1.0.Gpseq.IteratorSpliterator
|
|
@@ -1210,9 +1168,6 @@ export module ListSpliterator {
|
|
|
1210
1168
|
|
|
1211
1169
|
// Own constructor properties of Gpseq-1.0.Gpseq.ListSpliterator
|
|
1212
1170
|
|
|
1213
|
-
g_type?: GObject.GType | null
|
|
1214
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1215
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1216
1171
|
gType?: GObject.GType | null
|
|
1217
1172
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1218
1173
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1224,11 +1179,8 @@ export interface ListSpliterator extends Spliterator {
|
|
|
1224
1179
|
|
|
1225
1180
|
// Own properties of Gpseq-1.0.Gpseq.ListSpliterator
|
|
1226
1181
|
|
|
1227
|
-
readonly g_type: GObject.GType
|
|
1228
1182
|
readonly gType: GObject.GType
|
|
1229
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1230
1183
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1231
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1232
1184
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1233
1185
|
|
|
1234
1186
|
// Class property signals of Gpseq-1.0.Gpseq.ListSpliterator
|
|
@@ -1277,9 +1229,6 @@ export module Optional {
|
|
|
1277
1229
|
|
|
1278
1230
|
// Own constructor properties of Gpseq-1.0.Gpseq.Optional
|
|
1279
1231
|
|
|
1280
|
-
g_type?: GObject.GType | null
|
|
1281
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1282
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1283
1232
|
gType?: GObject.GType | null
|
|
1284
1233
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1285
1234
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1291,16 +1240,11 @@ export interface Optional {
|
|
|
1291
1240
|
|
|
1292
1241
|
// Own properties of Gpseq-1.0.Gpseq.Optional
|
|
1293
1242
|
|
|
1294
|
-
readonly g_type: GObject.GType
|
|
1295
1243
|
readonly gType: GObject.GType
|
|
1296
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1297
1244
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1298
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1299
1245
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1300
|
-
readonly value_type: GObject.GType
|
|
1301
1246
|
readonly valueType: GObject.GType
|
|
1302
1247
|
readonly value: any
|
|
1303
|
-
readonly is_present: boolean
|
|
1304
1248
|
readonly isPresent: boolean
|
|
1305
1249
|
|
|
1306
1250
|
// Owm methods of Gpseq-1.0.Gpseq.Optional
|
|
@@ -1393,9 +1337,6 @@ export module Seq {
|
|
|
1393
1337
|
|
|
1394
1338
|
// Own constructor properties of Gpseq-1.0.Gpseq.Seq
|
|
1395
1339
|
|
|
1396
|
-
g_type?: GObject.GType | null
|
|
1397
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1398
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1399
1340
|
gType?: GObject.GType | null
|
|
1400
1341
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1401
1342
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1407,19 +1348,12 @@ export interface Seq {
|
|
|
1407
1348
|
|
|
1408
1349
|
// Own properties of Gpseq-1.0.Gpseq.Seq
|
|
1409
1350
|
|
|
1410
|
-
readonly g_type: GObject.GType
|
|
1411
1351
|
readonly gType: GObject.GType
|
|
1412
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1413
1352
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1414
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1415
1353
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1416
|
-
readonly element_type: GObject.GType
|
|
1417
1354
|
readonly elementType: GObject.GType
|
|
1418
|
-
readonly task_env: TaskEnv
|
|
1419
1355
|
readonly taskEnv: TaskEnv
|
|
1420
|
-
readonly is_closed: boolean
|
|
1421
1356
|
readonly isClosed: boolean
|
|
1422
|
-
readonly is_parallel: boolean
|
|
1423
1357
|
readonly isParallel: boolean
|
|
1424
1358
|
|
|
1425
1359
|
// Owm methods of Gpseq-1.0.Gpseq.Seq
|
|
@@ -1527,12 +1461,6 @@ export module SpliteratorTask {
|
|
|
1527
1461
|
|
|
1528
1462
|
// Own constructor properties of Gpseq-1.0.Gpseq.SpliteratorTask
|
|
1529
1463
|
|
|
1530
|
-
r_type?: GObject.GType | null
|
|
1531
|
-
r_dup_func?: GObject.BoxedCopyFunc | null
|
|
1532
|
-
r_destroy_func?: GLib.DestroyNotify | null
|
|
1533
|
-
g_type?: GObject.GType | null
|
|
1534
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1535
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1536
1464
|
rType?: GObject.GType | null
|
|
1537
1465
|
rDupFunc?: GObject.BoxedCopyFunc | null
|
|
1538
1466
|
rDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1547,28 +1475,17 @@ export interface SpliteratorTask {
|
|
|
1547
1475
|
|
|
1548
1476
|
// Own properties of Gpseq-1.0.Gpseq.SpliteratorTask
|
|
1549
1477
|
|
|
1550
|
-
readonly r_type: GObject.GType
|
|
1551
1478
|
readonly rType: GObject.GType
|
|
1552
|
-
readonly r_dup_func: GObject.BoxedCopyFunc
|
|
1553
1479
|
readonly rDupFunc: GObject.BoxedCopyFunc
|
|
1554
|
-
readonly r_destroy_func: GLib.DestroyNotify
|
|
1555
1480
|
readonly rDestroyFunc: GLib.DestroyNotify
|
|
1556
|
-
readonly g_type: GObject.GType
|
|
1557
1481
|
readonly gType: GObject.GType
|
|
1558
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1559
1482
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1560
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1561
1483
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1562
1484
|
readonly spliterator: Spliterator
|
|
1563
|
-
readonly left_child: SpliteratorTask
|
|
1564
1485
|
readonly leftChild: SpliteratorTask
|
|
1565
|
-
readonly right_child: SpliteratorTask
|
|
1566
1486
|
readonly rightChild: SpliteratorTask
|
|
1567
|
-
readonly is_leaf: boolean
|
|
1568
1487
|
readonly isLeaf: boolean
|
|
1569
|
-
readonly is_leftmost: boolean
|
|
1570
1488
|
readonly isLeftmost: boolean
|
|
1571
|
-
readonly empty_result: any
|
|
1572
1489
|
readonly emptyResult: any
|
|
1573
1490
|
|
|
1574
1491
|
// Owm methods of Gpseq-1.0.Gpseq.SpliteratorTask
|
|
@@ -1686,9 +1603,6 @@ export module SubArray {
|
|
|
1686
1603
|
|
|
1687
1604
|
// Own constructor properties of Gpseq-1.0.Gpseq.SubArray
|
|
1688
1605
|
|
|
1689
|
-
g_type?: GObject.GType | null
|
|
1690
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1691
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1692
1606
|
gType?: GObject.GType | null
|
|
1693
1607
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1694
1608
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1700,11 +1614,8 @@ export interface SubArray extends Gee.Traversable, Gee.Iterable {
|
|
|
1700
1614
|
|
|
1701
1615
|
// Own properties of Gpseq-1.0.Gpseq.SubArray
|
|
1702
1616
|
|
|
1703
|
-
readonly g_type: GObject.GType
|
|
1704
1617
|
readonly gType: GObject.GType
|
|
1705
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1706
1618
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1707
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1708
1619
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1709
1620
|
readonly size: number
|
|
1710
1621
|
|
|
@@ -1772,9 +1683,6 @@ export module SubArraySpliterator {
|
|
|
1772
1683
|
|
|
1773
1684
|
// Own constructor properties of Gpseq-1.0.Gpseq.SubArraySpliterator
|
|
1774
1685
|
|
|
1775
|
-
g_type?: GObject.GType | null
|
|
1776
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1777
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1778
1686
|
gType?: GObject.GType | null
|
|
1779
1687
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1780
1688
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1786,11 +1694,8 @@ export interface SubArraySpliterator extends Spliterator {
|
|
|
1786
1694
|
|
|
1787
1695
|
// Own properties of Gpseq-1.0.Gpseq.SubArraySpliterator
|
|
1788
1696
|
|
|
1789
|
-
readonly g_type: GObject.GType
|
|
1790
1697
|
readonly gType: GObject.GType
|
|
1791
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1792
1698
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1793
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1794
1699
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1795
1700
|
|
|
1796
1701
|
// Class property signals of Gpseq-1.0.Gpseq.SubArraySpliterator
|
|
@@ -1839,9 +1744,6 @@ export module SupplierSpliterator {
|
|
|
1839
1744
|
|
|
1840
1745
|
// Own constructor properties of Gpseq-1.0.Gpseq.SupplierSpliterator
|
|
1841
1746
|
|
|
1842
|
-
g_type?: GObject.GType | null
|
|
1843
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1844
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1845
1747
|
gType?: GObject.GType | null
|
|
1846
1748
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1847
1749
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1853,11 +1755,8 @@ export interface SupplierSpliterator extends Spliterator {
|
|
|
1853
1755
|
|
|
1854
1756
|
// Own properties of Gpseq-1.0.Gpseq.SupplierSpliterator
|
|
1855
1757
|
|
|
1856
|
-
readonly g_type: GObject.GType
|
|
1857
1758
|
readonly gType: GObject.GType
|
|
1858
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1859
1759
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1860
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1861
1760
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1862
1761
|
|
|
1863
1762
|
// Class property signals of Gpseq-1.0.Gpseq.SupplierSpliterator
|
|
@@ -2006,7 +1905,6 @@ export module WorkerPool {
|
|
|
2006
1905
|
|
|
2007
1906
|
// Own constructor properties of Gpseq-1.0.Gpseq.WorkerPool
|
|
2008
1907
|
|
|
2009
|
-
max_threads?: number | null
|
|
2010
1908
|
maxThreads?: number | null
|
|
2011
1909
|
}
|
|
2012
1910
|
|
|
@@ -2016,16 +1914,11 @@ export interface WorkerPool extends Executor {
|
|
|
2016
1914
|
|
|
2017
1915
|
// Own properties of Gpseq-1.0.Gpseq.WorkerPool
|
|
2018
1916
|
|
|
2019
|
-
max_threads: number
|
|
2020
1917
|
maxThreads: number
|
|
2021
|
-
readonly num_threads: number
|
|
2022
1918
|
readonly numThreads: number
|
|
2023
1919
|
readonly factory: ThreadFactory
|
|
2024
|
-
readonly is_terminating: boolean
|
|
2025
1920
|
readonly isTerminating: boolean
|
|
2026
|
-
readonly is_terminated: boolean
|
|
2027
1921
|
readonly isTerminated: boolean
|
|
2028
|
-
readonly is_terminating_started: boolean
|
|
2029
1922
|
readonly isTerminatingStarted: boolean
|
|
2030
1923
|
|
|
2031
1924
|
// Owm methods of Gpseq-1.0.Gpseq.WorkerPool
|
|
@@ -2104,11 +1997,8 @@ export interface WorkerThread {
|
|
|
2104
1997
|
readonly thread: GLib.Thread
|
|
2105
1998
|
readonly pool: WorkerPool
|
|
2106
1999
|
readonly name: string | null
|
|
2107
|
-
readonly is_started: boolean
|
|
2108
2000
|
readonly isStarted: boolean
|
|
2109
|
-
readonly is_terminated: boolean
|
|
2110
2001
|
readonly isTerminated: boolean
|
|
2111
|
-
readonly is_alive: boolean
|
|
2112
2002
|
readonly isAlive: boolean
|
|
2113
2003
|
|
|
2114
2004
|
// Owm methods of Gpseq-1.0.Gpseq.WorkerThread
|
|
@@ -2174,9 +2064,6 @@ export module Wrapper {
|
|
|
2174
2064
|
|
|
2175
2065
|
// Own constructor properties of Gpseq-1.0.Gpseq.Wrapper
|
|
2176
2066
|
|
|
2177
|
-
g_type?: GObject.GType | null
|
|
2178
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
2179
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
2180
2067
|
gType?: GObject.GType | null
|
|
2181
2068
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
2182
2069
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -2188,14 +2075,10 @@ export interface Wrapper {
|
|
|
2188
2075
|
|
|
2189
2076
|
// Own properties of Gpseq-1.0.Gpseq.Wrapper
|
|
2190
2077
|
|
|
2191
|
-
readonly g_type: GObject.GType
|
|
2192
2078
|
readonly gType: GObject.GType
|
|
2193
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
2194
2079
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
2195
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
2196
2080
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
2197
2081
|
readonly value: any
|
|
2198
|
-
readonly value_type: GObject.GType
|
|
2199
2082
|
readonly valueType: GObject.GType
|
|
2200
2083
|
|
|
2201
2084
|
// Owm methods of Gpseq-1.0.Gpseq.Wrapper
|
package/gpseq-1.0.d.ts
CHANGED
|
@@ -510,9 +510,7 @@ interface Spliterator extends GObject.Object {
|
|
|
510
510
|
|
|
511
511
|
// Own properties of Gpseq-1.0.Gpseq.Spliterator
|
|
512
512
|
|
|
513
|
-
readonly estimated_size: number
|
|
514
513
|
readonly estimatedSize: number
|
|
515
|
-
readonly is_size_known: boolean
|
|
516
514
|
readonly isSizeKnown: boolean
|
|
517
515
|
|
|
518
516
|
// Owm methods of Gpseq-1.0.Gpseq.Spliterator
|
|
@@ -701,9 +699,6 @@ module ArraySpliterator {
|
|
|
701
699
|
|
|
702
700
|
// Own constructor properties of Gpseq-1.0.Gpseq.ArraySpliterator
|
|
703
701
|
|
|
704
|
-
g_type?: GObject.GType | null
|
|
705
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
706
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
707
702
|
gType?: GObject.GType | null
|
|
708
703
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
709
704
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -715,11 +710,8 @@ interface ArraySpliterator extends Spliterator {
|
|
|
715
710
|
|
|
716
711
|
// Own properties of Gpseq-1.0.Gpseq.ArraySpliterator
|
|
717
712
|
|
|
718
|
-
readonly g_type: GObject.GType
|
|
719
713
|
readonly gType: GObject.GType
|
|
720
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
721
714
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
722
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
723
715
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
724
716
|
|
|
725
717
|
// Class property signals of Gpseq-1.0.Gpseq.ArraySpliterator
|
|
@@ -768,13 +760,10 @@ module ForkJoinTask {
|
|
|
768
760
|
|
|
769
761
|
// Own constructor properties of Gpseq-1.0.Gpseq.ForkJoinTask
|
|
770
762
|
|
|
771
|
-
g_type?: GObject.GType | null
|
|
772
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
773
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
774
|
-
depth?: number | null
|
|
775
763
|
gType?: GObject.GType | null
|
|
776
764
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
777
765
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
766
|
+
depth?: number | null
|
|
778
767
|
}
|
|
779
768
|
|
|
780
769
|
}
|
|
@@ -783,25 +772,18 @@ interface ForkJoinTask extends Task {
|
|
|
783
772
|
|
|
784
773
|
// Own properties of Gpseq-1.0.Gpseq.ForkJoinTask
|
|
785
774
|
|
|
786
|
-
readonly g_type: GObject.GType
|
|
787
775
|
readonly gType: GObject.GType
|
|
788
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
789
776
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
790
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
791
777
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
792
778
|
readonly parent: ForkJoinTask
|
|
793
779
|
readonly root: ForkJoinTask
|
|
794
|
-
readonly is_root: boolean
|
|
795
780
|
readonly isRoot: boolean
|
|
796
781
|
readonly threshold: number
|
|
797
|
-
readonly max_depth: number
|
|
798
782
|
readonly maxDepth: number
|
|
799
783
|
depth: number
|
|
800
784
|
readonly executor: Executor
|
|
801
785
|
readonly promise: Promise
|
|
802
|
-
readonly shared_result: ForkJoinTaskSharedResult
|
|
803
786
|
readonly sharedResult: ForkJoinTaskSharedResult
|
|
804
|
-
readonly is_cancelled: boolean
|
|
805
787
|
readonly isCancelled: boolean
|
|
806
788
|
|
|
807
789
|
// Owm methods of Gpseq-1.0.Gpseq.ForkJoinTask
|
|
@@ -925,9 +907,6 @@ module FuncTask {
|
|
|
925
907
|
|
|
926
908
|
// Own constructor properties of Gpseq-1.0.Gpseq.FuncTask
|
|
927
909
|
|
|
928
|
-
g_type?: GObject.GType | null
|
|
929
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
930
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
931
910
|
gType?: GObject.GType | null
|
|
932
911
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
933
912
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -939,11 +918,8 @@ interface FuncTask extends Task {
|
|
|
939
918
|
|
|
940
919
|
// Own properties of Gpseq-1.0.Gpseq.FuncTask
|
|
941
920
|
|
|
942
|
-
readonly g_type: GObject.GType
|
|
943
921
|
readonly gType: GObject.GType
|
|
944
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
945
922
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
946
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
947
923
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
948
924
|
|
|
949
925
|
// Class property signals of Gpseq-1.0.Gpseq.FuncTask
|
|
@@ -989,9 +965,6 @@ module Future {
|
|
|
989
965
|
|
|
990
966
|
// Own constructor properties of Gpseq-1.0.Gpseq.Future
|
|
991
967
|
|
|
992
|
-
g_type?: GObject.GType | null
|
|
993
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
994
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
995
968
|
gType?: GObject.GType | null
|
|
996
969
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
997
970
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1003,11 +976,8 @@ interface Future extends Gee.Hashable, Result {
|
|
|
1003
976
|
|
|
1004
977
|
// Own properties of Gpseq-1.0.Gpseq.Future
|
|
1005
978
|
|
|
1006
|
-
readonly g_type: GObject.GType
|
|
1007
979
|
readonly gType: GObject.GType
|
|
1008
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1009
980
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1010
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1011
981
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1012
982
|
readonly ready: boolean
|
|
1013
983
|
|
|
@@ -1077,9 +1047,6 @@ module GenericArraySpliterator {
|
|
|
1077
1047
|
|
|
1078
1048
|
// Own constructor properties of Gpseq-1.0.Gpseq.GenericArraySpliterator
|
|
1079
1049
|
|
|
1080
|
-
g_type?: GObject.GType | null
|
|
1081
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1082
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1083
1050
|
gType?: GObject.GType | null
|
|
1084
1051
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1085
1052
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1091,11 +1058,8 @@ interface GenericArraySpliterator extends Spliterator {
|
|
|
1091
1058
|
|
|
1092
1059
|
// Own properties of Gpseq-1.0.Gpseq.GenericArraySpliterator
|
|
1093
1060
|
|
|
1094
|
-
readonly g_type: GObject.GType
|
|
1095
1061
|
readonly gType: GObject.GType
|
|
1096
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1097
1062
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1098
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1099
1063
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1100
1064
|
|
|
1101
1065
|
// Class property signals of Gpseq-1.0.Gpseq.GenericArraySpliterator
|
|
@@ -1144,9 +1108,6 @@ module IteratorSpliterator {
|
|
|
1144
1108
|
|
|
1145
1109
|
// Own constructor properties of Gpseq-1.0.Gpseq.IteratorSpliterator
|
|
1146
1110
|
|
|
1147
|
-
g_type?: GObject.GType | null
|
|
1148
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1149
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1150
1111
|
gType?: GObject.GType | null
|
|
1151
1112
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1152
1113
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1158,11 +1119,8 @@ interface IteratorSpliterator extends Spliterator {
|
|
|
1158
1119
|
|
|
1159
1120
|
// Own properties of Gpseq-1.0.Gpseq.IteratorSpliterator
|
|
1160
1121
|
|
|
1161
|
-
readonly g_type: GObject.GType
|
|
1162
1122
|
readonly gType: GObject.GType
|
|
1163
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1164
1123
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1165
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1166
1124
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1167
1125
|
|
|
1168
1126
|
// Class property signals of Gpseq-1.0.Gpseq.IteratorSpliterator
|
|
@@ -1212,9 +1170,6 @@ module ListSpliterator {
|
|
|
1212
1170
|
|
|
1213
1171
|
// Own constructor properties of Gpseq-1.0.Gpseq.ListSpliterator
|
|
1214
1172
|
|
|
1215
|
-
g_type?: GObject.GType | null
|
|
1216
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1217
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1218
1173
|
gType?: GObject.GType | null
|
|
1219
1174
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1220
1175
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1226,11 +1181,8 @@ interface ListSpliterator extends Spliterator {
|
|
|
1226
1181
|
|
|
1227
1182
|
// Own properties of Gpseq-1.0.Gpseq.ListSpliterator
|
|
1228
1183
|
|
|
1229
|
-
readonly g_type: GObject.GType
|
|
1230
1184
|
readonly gType: GObject.GType
|
|
1231
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1232
1185
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1233
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1234
1186
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1235
1187
|
|
|
1236
1188
|
// Class property signals of Gpseq-1.0.Gpseq.ListSpliterator
|
|
@@ -1279,9 +1231,6 @@ module Optional {
|
|
|
1279
1231
|
|
|
1280
1232
|
// Own constructor properties of Gpseq-1.0.Gpseq.Optional
|
|
1281
1233
|
|
|
1282
|
-
g_type?: GObject.GType | null
|
|
1283
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1284
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1285
1234
|
gType?: GObject.GType | null
|
|
1286
1235
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1287
1236
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1293,16 +1242,11 @@ interface Optional {
|
|
|
1293
1242
|
|
|
1294
1243
|
// Own properties of Gpseq-1.0.Gpseq.Optional
|
|
1295
1244
|
|
|
1296
|
-
readonly g_type: GObject.GType
|
|
1297
1245
|
readonly gType: GObject.GType
|
|
1298
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1299
1246
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1300
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1301
1247
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1302
|
-
readonly value_type: GObject.GType
|
|
1303
1248
|
readonly valueType: GObject.GType
|
|
1304
1249
|
readonly value: any
|
|
1305
|
-
readonly is_present: boolean
|
|
1306
1250
|
readonly isPresent: boolean
|
|
1307
1251
|
|
|
1308
1252
|
// Owm methods of Gpseq-1.0.Gpseq.Optional
|
|
@@ -1395,9 +1339,6 @@ module Seq {
|
|
|
1395
1339
|
|
|
1396
1340
|
// Own constructor properties of Gpseq-1.0.Gpseq.Seq
|
|
1397
1341
|
|
|
1398
|
-
g_type?: GObject.GType | null
|
|
1399
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1400
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1401
1342
|
gType?: GObject.GType | null
|
|
1402
1343
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1403
1344
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1409,19 +1350,12 @@ interface Seq {
|
|
|
1409
1350
|
|
|
1410
1351
|
// Own properties of Gpseq-1.0.Gpseq.Seq
|
|
1411
1352
|
|
|
1412
|
-
readonly g_type: GObject.GType
|
|
1413
1353
|
readonly gType: GObject.GType
|
|
1414
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1415
1354
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1416
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1417
1355
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1418
|
-
readonly element_type: GObject.GType
|
|
1419
1356
|
readonly elementType: GObject.GType
|
|
1420
|
-
readonly task_env: TaskEnv
|
|
1421
1357
|
readonly taskEnv: TaskEnv
|
|
1422
|
-
readonly is_closed: boolean
|
|
1423
1358
|
readonly isClosed: boolean
|
|
1424
|
-
readonly is_parallel: boolean
|
|
1425
1359
|
readonly isParallel: boolean
|
|
1426
1360
|
|
|
1427
1361
|
// Owm methods of Gpseq-1.0.Gpseq.Seq
|
|
@@ -1529,12 +1463,6 @@ module SpliteratorTask {
|
|
|
1529
1463
|
|
|
1530
1464
|
// Own constructor properties of Gpseq-1.0.Gpseq.SpliteratorTask
|
|
1531
1465
|
|
|
1532
|
-
r_type?: GObject.GType | null
|
|
1533
|
-
r_dup_func?: GObject.BoxedCopyFunc | null
|
|
1534
|
-
r_destroy_func?: GLib.DestroyNotify | null
|
|
1535
|
-
g_type?: GObject.GType | null
|
|
1536
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1537
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1538
1466
|
rType?: GObject.GType | null
|
|
1539
1467
|
rDupFunc?: GObject.BoxedCopyFunc | null
|
|
1540
1468
|
rDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1549,28 +1477,17 @@ interface SpliteratorTask {
|
|
|
1549
1477
|
|
|
1550
1478
|
// Own properties of Gpseq-1.0.Gpseq.SpliteratorTask
|
|
1551
1479
|
|
|
1552
|
-
readonly r_type: GObject.GType
|
|
1553
1480
|
readonly rType: GObject.GType
|
|
1554
|
-
readonly r_dup_func: GObject.BoxedCopyFunc
|
|
1555
1481
|
readonly rDupFunc: GObject.BoxedCopyFunc
|
|
1556
|
-
readonly r_destroy_func: GLib.DestroyNotify
|
|
1557
1482
|
readonly rDestroyFunc: GLib.DestroyNotify
|
|
1558
|
-
readonly g_type: GObject.GType
|
|
1559
1483
|
readonly gType: GObject.GType
|
|
1560
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1561
1484
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1562
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1563
1485
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1564
1486
|
readonly spliterator: Spliterator
|
|
1565
|
-
readonly left_child: SpliteratorTask
|
|
1566
1487
|
readonly leftChild: SpliteratorTask
|
|
1567
|
-
readonly right_child: SpliteratorTask
|
|
1568
1488
|
readonly rightChild: SpliteratorTask
|
|
1569
|
-
readonly is_leaf: boolean
|
|
1570
1489
|
readonly isLeaf: boolean
|
|
1571
|
-
readonly is_leftmost: boolean
|
|
1572
1490
|
readonly isLeftmost: boolean
|
|
1573
|
-
readonly empty_result: any
|
|
1574
1491
|
readonly emptyResult: any
|
|
1575
1492
|
|
|
1576
1493
|
// Owm methods of Gpseq-1.0.Gpseq.SpliteratorTask
|
|
@@ -1688,9 +1605,6 @@ module SubArray {
|
|
|
1688
1605
|
|
|
1689
1606
|
// Own constructor properties of Gpseq-1.0.Gpseq.SubArray
|
|
1690
1607
|
|
|
1691
|
-
g_type?: GObject.GType | null
|
|
1692
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1693
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1694
1608
|
gType?: GObject.GType | null
|
|
1695
1609
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1696
1610
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1702,11 +1616,8 @@ interface SubArray extends Gee.Traversable, Gee.Iterable {
|
|
|
1702
1616
|
|
|
1703
1617
|
// Own properties of Gpseq-1.0.Gpseq.SubArray
|
|
1704
1618
|
|
|
1705
|
-
readonly g_type: GObject.GType
|
|
1706
1619
|
readonly gType: GObject.GType
|
|
1707
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1708
1620
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1709
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1710
1621
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1711
1622
|
readonly size: number
|
|
1712
1623
|
|
|
@@ -1774,9 +1685,6 @@ module SubArraySpliterator {
|
|
|
1774
1685
|
|
|
1775
1686
|
// Own constructor properties of Gpseq-1.0.Gpseq.SubArraySpliterator
|
|
1776
1687
|
|
|
1777
|
-
g_type?: GObject.GType | null
|
|
1778
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1779
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1780
1688
|
gType?: GObject.GType | null
|
|
1781
1689
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1782
1690
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1788,11 +1696,8 @@ interface SubArraySpliterator extends Spliterator {
|
|
|
1788
1696
|
|
|
1789
1697
|
// Own properties of Gpseq-1.0.Gpseq.SubArraySpliterator
|
|
1790
1698
|
|
|
1791
|
-
readonly g_type: GObject.GType
|
|
1792
1699
|
readonly gType: GObject.GType
|
|
1793
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1794
1700
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1795
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1796
1701
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1797
1702
|
|
|
1798
1703
|
// Class property signals of Gpseq-1.0.Gpseq.SubArraySpliterator
|
|
@@ -1841,9 +1746,6 @@ module SupplierSpliterator {
|
|
|
1841
1746
|
|
|
1842
1747
|
// Own constructor properties of Gpseq-1.0.Gpseq.SupplierSpliterator
|
|
1843
1748
|
|
|
1844
|
-
g_type?: GObject.GType | null
|
|
1845
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
1846
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
1847
1749
|
gType?: GObject.GType | null
|
|
1848
1750
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
1849
1751
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -1855,11 +1757,8 @@ interface SupplierSpliterator extends Spliterator {
|
|
|
1855
1757
|
|
|
1856
1758
|
// Own properties of Gpseq-1.0.Gpseq.SupplierSpliterator
|
|
1857
1759
|
|
|
1858
|
-
readonly g_type: GObject.GType
|
|
1859
1760
|
readonly gType: GObject.GType
|
|
1860
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
1861
1761
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
1862
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
1863
1762
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
1864
1763
|
|
|
1865
1764
|
// Class property signals of Gpseq-1.0.Gpseq.SupplierSpliterator
|
|
@@ -2008,7 +1907,6 @@ module WorkerPool {
|
|
|
2008
1907
|
|
|
2009
1908
|
// Own constructor properties of Gpseq-1.0.Gpseq.WorkerPool
|
|
2010
1909
|
|
|
2011
|
-
max_threads?: number | null
|
|
2012
1910
|
maxThreads?: number | null
|
|
2013
1911
|
}
|
|
2014
1912
|
|
|
@@ -2018,16 +1916,11 @@ interface WorkerPool extends Executor {
|
|
|
2018
1916
|
|
|
2019
1917
|
// Own properties of Gpseq-1.0.Gpseq.WorkerPool
|
|
2020
1918
|
|
|
2021
|
-
max_threads: number
|
|
2022
1919
|
maxThreads: number
|
|
2023
|
-
readonly num_threads: number
|
|
2024
1920
|
readonly numThreads: number
|
|
2025
1921
|
readonly factory: ThreadFactory
|
|
2026
|
-
readonly is_terminating: boolean
|
|
2027
1922
|
readonly isTerminating: boolean
|
|
2028
|
-
readonly is_terminated: boolean
|
|
2029
1923
|
readonly isTerminated: boolean
|
|
2030
|
-
readonly is_terminating_started: boolean
|
|
2031
1924
|
readonly isTerminatingStarted: boolean
|
|
2032
1925
|
|
|
2033
1926
|
// Owm methods of Gpseq-1.0.Gpseq.WorkerPool
|
|
@@ -2106,11 +1999,8 @@ interface WorkerThread {
|
|
|
2106
1999
|
readonly thread: GLib.Thread
|
|
2107
2000
|
readonly pool: WorkerPool
|
|
2108
2001
|
readonly name: string | null
|
|
2109
|
-
readonly is_started: boolean
|
|
2110
2002
|
readonly isStarted: boolean
|
|
2111
|
-
readonly is_terminated: boolean
|
|
2112
2003
|
readonly isTerminated: boolean
|
|
2113
|
-
readonly is_alive: boolean
|
|
2114
2004
|
readonly isAlive: boolean
|
|
2115
2005
|
|
|
2116
2006
|
// Owm methods of Gpseq-1.0.Gpseq.WorkerThread
|
|
@@ -2176,9 +2066,6 @@ module Wrapper {
|
|
|
2176
2066
|
|
|
2177
2067
|
// Own constructor properties of Gpseq-1.0.Gpseq.Wrapper
|
|
2178
2068
|
|
|
2179
|
-
g_type?: GObject.GType | null
|
|
2180
|
-
g_dup_func?: GObject.BoxedCopyFunc | null
|
|
2181
|
-
g_destroy_func?: GLib.DestroyNotify | null
|
|
2182
2069
|
gType?: GObject.GType | null
|
|
2183
2070
|
gDupFunc?: GObject.BoxedCopyFunc | null
|
|
2184
2071
|
gDestroyFunc?: GLib.DestroyNotify | null
|
|
@@ -2190,14 +2077,10 @@ interface Wrapper {
|
|
|
2190
2077
|
|
|
2191
2078
|
// Own properties of Gpseq-1.0.Gpseq.Wrapper
|
|
2192
2079
|
|
|
2193
|
-
readonly g_type: GObject.GType
|
|
2194
2080
|
readonly gType: GObject.GType
|
|
2195
|
-
readonly g_dup_func: GObject.BoxedCopyFunc
|
|
2196
2081
|
readonly gDupFunc: GObject.BoxedCopyFunc
|
|
2197
|
-
readonly g_destroy_func: GLib.DestroyNotify
|
|
2198
2082
|
readonly gDestroyFunc: GLib.DestroyNotify
|
|
2199
2083
|
readonly value: any
|
|
2200
|
-
readonly value_type: GObject.GType
|
|
2201
2084
|
readonly valueType: GObject.GType
|
|
2202
2085
|
|
|
2203
2086
|
// Owm methods of Gpseq-1.0.Gpseq.Wrapper
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gpseq-1.0",
|
|
3
|
-
"version": "1.0.0-3.2.
|
|
3
|
+
"version": "1.0.0-3.2.8",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gpseq-1.0, generated from library version 1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gpseq-1.0.js",
|
|
7
7
|
"main": "gpseq-1.0.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./gpseq-1.0-ambient.d.ts",
|
|
11
|
+
"default": "./gpseq-1.0-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./gpseq-1.0-import.d.ts",
|
|
15
|
+
"default": "./gpseq-1.0-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./gpseq-1.0.d.ts",
|
|
@@ -25,11 +31,11 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gpseq-1.0.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/gee-0.8": "^0.8.0-3.2.
|
|
29
|
-
"@girs/gio-2.0": "^2.
|
|
30
|
-
"@girs/gjs": "^3.2.
|
|
31
|
-
"@girs/glib-2.0": "^2.
|
|
32
|
-
"@girs/gobject-2.0": "^2.
|
|
34
|
+
"@girs/gee-0.8": "^0.8.0-3.2.8",
|
|
35
|
+
"@girs/gio-2.0": "^2.77.0-3.2.8",
|
|
36
|
+
"@girs/gjs": "^3.2.8",
|
|
37
|
+
"@girs/glib-2.0": "^2.77.0-3.2.8",
|
|
38
|
+
"@girs/gobject-2.0": "^2.77.0-3.2.8"
|
|
33
39
|
},
|
|
34
40
|
"devDependencies": {
|
|
35
41
|
"typescript": "*"
|
|
@@ -46,7 +52,7 @@
|
|
|
46
52
|
"license": "MIT",
|
|
47
53
|
"repository": {
|
|
48
54
|
"type": "git",
|
|
49
|
-
"url": "git+https://github.com/gjsify/
|
|
55
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
50
56
|
},
|
|
51
57
|
"bugs": {
|
|
52
58
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|