@girs/gee-1.0 1.0.0-3.2.5 → 1.0.0-3.2.6
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/gee-1.0.d.cts +58 -0
- package/gee-1.0.d.ts +58 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gee-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 Gee-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gee-1.0.d.cts
CHANGED
|
@@ -78,7 +78,9 @@ export interface Collection extends Iterable {
|
|
|
78
78
|
|
|
79
79
|
readonly size: number
|
|
80
80
|
readonly is_empty: boolean
|
|
81
|
+
readonly isEmpty: boolean
|
|
81
82
|
readonly read_only_view: Collection
|
|
83
|
+
readonly readOnlyView: Collection
|
|
82
84
|
|
|
83
85
|
// Owm methods of Gee-1.0.Gee.Collection
|
|
84
86
|
|
|
@@ -267,6 +269,7 @@ export interface Iterable extends GObject.Object {
|
|
|
267
269
|
// Own properties of Gee-1.0.Gee.Iterable
|
|
268
270
|
|
|
269
271
|
readonly element_type: GObject.GType
|
|
272
|
+
readonly elementType: GObject.GType
|
|
270
273
|
|
|
271
274
|
// Owm methods of Gee-1.0.Gee.Iterable
|
|
272
275
|
|
|
@@ -362,6 +365,7 @@ export interface List extends Collection {
|
|
|
362
365
|
// Own properties of Gee-1.0.Gee.List
|
|
363
366
|
|
|
364
367
|
readonly read_only_view: any
|
|
368
|
+
readonly readOnlyView: any
|
|
365
369
|
|
|
366
370
|
// Owm methods of Gee-1.0.Gee.List
|
|
367
371
|
|
|
@@ -490,12 +494,16 @@ export interface Map extends GObject.Object, Iterable {
|
|
|
490
494
|
|
|
491
495
|
readonly size: number
|
|
492
496
|
readonly is_empty: boolean
|
|
497
|
+
readonly isEmpty: boolean
|
|
493
498
|
readonly keys: Set
|
|
494
499
|
readonly values: Collection
|
|
495
500
|
readonly entries: Set
|
|
496
501
|
readonly read_only_view: Map
|
|
502
|
+
readonly readOnlyView: Map
|
|
497
503
|
readonly key_type: GObject.GType
|
|
504
|
+
readonly keyType: GObject.GType
|
|
498
505
|
readonly value_type: GObject.GType
|
|
506
|
+
readonly valueType: GObject.GType
|
|
499
507
|
|
|
500
508
|
// Owm methods of Gee-1.0.Gee.Map
|
|
501
509
|
|
|
@@ -762,7 +770,9 @@ export interface Queue extends Collection {
|
|
|
762
770
|
|
|
763
771
|
readonly capacity: number
|
|
764
772
|
readonly remaining_capacity: number
|
|
773
|
+
readonly remainingCapacity: number
|
|
765
774
|
readonly is_full: boolean
|
|
775
|
+
readonly isFull: boolean
|
|
766
776
|
|
|
767
777
|
// Owm methods of Gee-1.0.Gee.Queue
|
|
768
778
|
|
|
@@ -834,6 +844,7 @@ export interface Set extends Collection {
|
|
|
834
844
|
// Own properties of Gee-1.0.Gee.Set
|
|
835
845
|
|
|
836
846
|
readonly read_only_view: any
|
|
847
|
+
readonly readOnlyView: any
|
|
837
848
|
|
|
838
849
|
// Class property signals of Gee-1.0.Gee.Set
|
|
839
850
|
|
|
@@ -887,6 +898,7 @@ export interface SortedSet extends Set {
|
|
|
887
898
|
// Conflicting properties
|
|
888
899
|
|
|
889
900
|
read_only_view: any
|
|
901
|
+
readOnlyView: any
|
|
890
902
|
|
|
891
903
|
// Owm methods of Gee-1.0.Gee.SortedSet
|
|
892
904
|
|
|
@@ -973,7 +985,9 @@ export interface AbstractCollection extends Iterable, Collection {
|
|
|
973
985
|
|
|
974
986
|
readonly size: number
|
|
975
987
|
readonly is_empty: boolean
|
|
988
|
+
readonly isEmpty: boolean
|
|
976
989
|
readonly read_only_view: Collection
|
|
990
|
+
readonly readOnlyView: Collection
|
|
977
991
|
|
|
978
992
|
// Own fields of Gee-1.0.Gee.AbstractCollection
|
|
979
993
|
|
|
@@ -1053,6 +1067,7 @@ export interface AbstractList extends List {
|
|
|
1053
1067
|
// Own properties of Gee-1.0.Gee.AbstractList
|
|
1054
1068
|
|
|
1055
1069
|
readonly read_only_view: any
|
|
1070
|
+
readonly readOnlyView: any
|
|
1056
1071
|
|
|
1057
1072
|
// Own fields of Gee-1.0.Gee.AbstractList
|
|
1058
1073
|
|
|
@@ -1142,10 +1157,12 @@ export interface AbstractMap extends Iterable, Map {
|
|
|
1142
1157
|
|
|
1143
1158
|
readonly size: number
|
|
1144
1159
|
readonly is_empty: boolean
|
|
1160
|
+
readonly isEmpty: boolean
|
|
1145
1161
|
readonly keys: Set
|
|
1146
1162
|
readonly values: Collection
|
|
1147
1163
|
readonly entries: Set
|
|
1148
1164
|
readonly read_only_view: Map
|
|
1165
|
+
readonly readOnlyView: Map
|
|
1149
1166
|
|
|
1150
1167
|
// Own fields of Gee-1.0.Gee.AbstractMap
|
|
1151
1168
|
|
|
@@ -1344,7 +1361,9 @@ export interface AbstractQueue extends Queue {
|
|
|
1344
1361
|
|
|
1345
1362
|
readonly capacity: number
|
|
1346
1363
|
readonly remaining_capacity: number
|
|
1364
|
+
readonly remainingCapacity: number
|
|
1347
1365
|
readonly is_full: boolean
|
|
1366
|
+
readonly isFull: boolean
|
|
1348
1367
|
|
|
1349
1368
|
// Own fields of Gee-1.0.Gee.AbstractQueue
|
|
1350
1369
|
|
|
@@ -1421,6 +1440,7 @@ export interface AbstractSet extends Set {
|
|
|
1421
1440
|
// Own properties of Gee-1.0.Gee.AbstractSet
|
|
1422
1441
|
|
|
1423
1442
|
readonly read_only_view: any
|
|
1443
|
+
readonly readOnlyView: any
|
|
1424
1444
|
|
|
1425
1445
|
// Own fields of Gee-1.0.Gee.AbstractSet
|
|
1426
1446
|
|
|
@@ -1478,6 +1498,7 @@ export module ArrayList {
|
|
|
1478
1498
|
// Own constructor properties of Gee-1.0.Gee.ArrayList
|
|
1479
1499
|
|
|
1480
1500
|
equal_func?: GLib.EqualFunc | null
|
|
1501
|
+
equalFunc?: GLib.EqualFunc | null
|
|
1481
1502
|
}
|
|
1482
1503
|
|
|
1483
1504
|
}
|
|
@@ -1487,10 +1508,12 @@ export interface ArrayList {
|
|
|
1487
1508
|
// Own properties of Gee-1.0.Gee.ArrayList
|
|
1488
1509
|
|
|
1489
1510
|
equal_func: GLib.EqualFunc
|
|
1511
|
+
equalFunc: GLib.EqualFunc
|
|
1490
1512
|
|
|
1491
1513
|
// Conflicting properties
|
|
1492
1514
|
|
|
1493
1515
|
read_only_view: any
|
|
1516
|
+
readOnlyView: any
|
|
1494
1517
|
|
|
1495
1518
|
// Own fields of Gee-1.0.Gee.ArrayList
|
|
1496
1519
|
|
|
@@ -1556,6 +1579,9 @@ export module HashMap {
|
|
|
1556
1579
|
key_hash_func?: GLib.HashFunc | null
|
|
1557
1580
|
key_equal_func?: GLib.EqualFunc | null
|
|
1558
1581
|
value_equal_func?: GLib.EqualFunc | null
|
|
1582
|
+
keyHashFunc?: GLib.HashFunc | null
|
|
1583
|
+
keyEqualFunc?: GLib.EqualFunc | null
|
|
1584
|
+
valueEqualFunc?: GLib.EqualFunc | null
|
|
1559
1585
|
}
|
|
1560
1586
|
|
|
1561
1587
|
}
|
|
@@ -1565,8 +1591,11 @@ export interface HashMap {
|
|
|
1565
1591
|
// Own properties of Gee-1.0.Gee.HashMap
|
|
1566
1592
|
|
|
1567
1593
|
key_hash_func: GLib.HashFunc
|
|
1594
|
+
keyHashFunc: GLib.HashFunc
|
|
1568
1595
|
key_equal_func: GLib.EqualFunc
|
|
1596
|
+
keyEqualFunc: GLib.EqualFunc
|
|
1569
1597
|
value_equal_func: GLib.EqualFunc
|
|
1598
|
+
valueEqualFunc: GLib.EqualFunc
|
|
1570
1599
|
|
|
1571
1600
|
// Own fields of Gee-1.0.Gee.HashMap
|
|
1572
1601
|
|
|
@@ -1633,6 +1662,8 @@ export module HashMultiMap {
|
|
|
1633
1662
|
|
|
1634
1663
|
value_hash_func?: GLib.HashFunc | null
|
|
1635
1664
|
value_equal_func?: GLib.EqualFunc | null
|
|
1665
|
+
valueHashFunc?: GLib.HashFunc | null
|
|
1666
|
+
valueEqualFunc?: GLib.EqualFunc | null
|
|
1636
1667
|
}
|
|
1637
1668
|
|
|
1638
1669
|
}
|
|
@@ -1642,9 +1673,13 @@ export interface HashMultiMap {
|
|
|
1642
1673
|
// Own properties of Gee-1.0.Gee.HashMultiMap
|
|
1643
1674
|
|
|
1644
1675
|
readonly key_hash_func: GLib.HashFunc
|
|
1676
|
+
readonly keyHashFunc: GLib.HashFunc
|
|
1645
1677
|
readonly key_equal_func: GLib.EqualFunc
|
|
1678
|
+
readonly keyEqualFunc: GLib.EqualFunc
|
|
1646
1679
|
value_hash_func: GLib.HashFunc
|
|
1680
|
+
valueHashFunc: GLib.HashFunc
|
|
1647
1681
|
value_equal_func: GLib.EqualFunc
|
|
1682
|
+
valueEqualFunc: GLib.EqualFunc
|
|
1648
1683
|
|
|
1649
1684
|
// Own fields of Gee-1.0.Gee.HashMultiMap
|
|
1650
1685
|
|
|
@@ -1700,7 +1735,9 @@ export interface HashMultiSet {
|
|
|
1700
1735
|
// Own properties of Gee-1.0.Gee.HashMultiSet
|
|
1701
1736
|
|
|
1702
1737
|
readonly hash_func: GLib.HashFunc
|
|
1738
|
+
readonly hashFunc: GLib.HashFunc
|
|
1703
1739
|
readonly equal_func: GLib.EqualFunc
|
|
1740
|
+
readonly equalFunc: GLib.EqualFunc
|
|
1704
1741
|
|
|
1705
1742
|
// Own fields of Gee-1.0.Gee.HashMultiSet
|
|
1706
1743
|
|
|
@@ -1755,6 +1792,8 @@ export module HashSet {
|
|
|
1755
1792
|
|
|
1756
1793
|
hash_func?: GLib.HashFunc | null
|
|
1757
1794
|
equal_func?: GLib.EqualFunc | null
|
|
1795
|
+
hashFunc?: GLib.HashFunc | null
|
|
1796
|
+
equalFunc?: GLib.EqualFunc | null
|
|
1758
1797
|
}
|
|
1759
1798
|
|
|
1760
1799
|
}
|
|
@@ -1764,11 +1803,14 @@ export interface HashSet {
|
|
|
1764
1803
|
// Own properties of Gee-1.0.Gee.HashSet
|
|
1765
1804
|
|
|
1766
1805
|
hash_func: GLib.HashFunc
|
|
1806
|
+
hashFunc: GLib.HashFunc
|
|
1767
1807
|
equal_func: GLib.EqualFunc
|
|
1808
|
+
equalFunc: GLib.EqualFunc
|
|
1768
1809
|
|
|
1769
1810
|
// Conflicting properties
|
|
1770
1811
|
|
|
1771
1812
|
read_only_view: any
|
|
1813
|
+
readOnlyView: any
|
|
1772
1814
|
|
|
1773
1815
|
// Own fields of Gee-1.0.Gee.HashSet
|
|
1774
1816
|
|
|
@@ -1831,6 +1873,7 @@ export module LinkedList {
|
|
|
1831
1873
|
// Own constructor properties of Gee-1.0.Gee.LinkedList
|
|
1832
1874
|
|
|
1833
1875
|
equal_func?: GLib.EqualFunc | null
|
|
1876
|
+
equalFunc?: GLib.EqualFunc | null
|
|
1834
1877
|
}
|
|
1835
1878
|
|
|
1836
1879
|
}
|
|
@@ -1840,10 +1883,12 @@ export interface LinkedList extends Queue, Deque {
|
|
|
1840
1883
|
// Own properties of Gee-1.0.Gee.LinkedList
|
|
1841
1884
|
|
|
1842
1885
|
equal_func: GLib.EqualFunc
|
|
1886
|
+
equalFunc: GLib.EqualFunc
|
|
1843
1887
|
|
|
1844
1888
|
// Conflicting properties
|
|
1845
1889
|
|
|
1846
1890
|
read_only_view: any
|
|
1891
|
+
readOnlyView: any
|
|
1847
1892
|
|
|
1848
1893
|
// Own fields of Gee-1.0.Gee.LinkedList
|
|
1849
1894
|
|
|
@@ -1915,6 +1960,7 @@ export module PriorityQueue {
|
|
|
1915
1960
|
// Own constructor properties of Gee-1.0.Gee.PriorityQueue
|
|
1916
1961
|
|
|
1917
1962
|
compare_func?: GLib.CompareFunc | null
|
|
1963
|
+
compareFunc?: GLib.CompareFunc | null
|
|
1918
1964
|
}
|
|
1919
1965
|
|
|
1920
1966
|
}
|
|
@@ -1924,6 +1970,7 @@ export interface PriorityQueue {
|
|
|
1924
1970
|
// Own properties of Gee-1.0.Gee.PriorityQueue
|
|
1925
1971
|
|
|
1926
1972
|
compare_func: GLib.CompareFunc
|
|
1973
|
+
compareFunc: GLib.CompareFunc
|
|
1927
1974
|
|
|
1928
1975
|
// Own fields of Gee-1.0.Gee.PriorityQueue
|
|
1929
1976
|
|
|
@@ -1984,6 +2031,8 @@ export module TreeMap {
|
|
|
1984
2031
|
|
|
1985
2032
|
key_compare_func?: GLib.CompareFunc | null
|
|
1986
2033
|
value_equal_func?: GLib.EqualFunc | null
|
|
2034
|
+
keyCompareFunc?: GLib.CompareFunc | null
|
|
2035
|
+
valueEqualFunc?: GLib.EqualFunc | null
|
|
1987
2036
|
}
|
|
1988
2037
|
|
|
1989
2038
|
}
|
|
@@ -1993,7 +2042,9 @@ export interface TreeMap {
|
|
|
1993
2042
|
// Own properties of Gee-1.0.Gee.TreeMap
|
|
1994
2043
|
|
|
1995
2044
|
key_compare_func: GLib.CompareFunc
|
|
2045
|
+
keyCompareFunc: GLib.CompareFunc
|
|
1996
2046
|
value_equal_func: GLib.EqualFunc
|
|
2047
|
+
valueEqualFunc: GLib.EqualFunc
|
|
1997
2048
|
|
|
1998
2049
|
// Own fields of Gee-1.0.Gee.TreeMap
|
|
1999
2050
|
|
|
@@ -2056,6 +2107,7 @@ export module TreeMultiMap {
|
|
|
2056
2107
|
// Own constructor properties of Gee-1.0.Gee.TreeMultiMap
|
|
2057
2108
|
|
|
2058
2109
|
value_compare_func?: GLib.CompareFunc | null
|
|
2110
|
+
valueCompareFunc?: GLib.CompareFunc | null
|
|
2059
2111
|
}
|
|
2060
2112
|
|
|
2061
2113
|
}
|
|
@@ -2065,7 +2117,9 @@ export interface TreeMultiMap {
|
|
|
2065
2117
|
// Own properties of Gee-1.0.Gee.TreeMultiMap
|
|
2066
2118
|
|
|
2067
2119
|
readonly key_compare_func: GLib.CompareFunc
|
|
2120
|
+
readonly keyCompareFunc: GLib.CompareFunc
|
|
2068
2121
|
value_compare_func: GLib.CompareFunc
|
|
2122
|
+
valueCompareFunc: GLib.CompareFunc
|
|
2069
2123
|
|
|
2070
2124
|
// Own fields of Gee-1.0.Gee.TreeMultiMap
|
|
2071
2125
|
|
|
@@ -2115,6 +2169,7 @@ export interface TreeMultiSet {
|
|
|
2115
2169
|
// Own properties of Gee-1.0.Gee.TreeMultiSet
|
|
2116
2170
|
|
|
2117
2171
|
readonly compare_func: GLib.CompareFunc
|
|
2172
|
+
readonly compareFunc: GLib.CompareFunc
|
|
2118
2173
|
|
|
2119
2174
|
// Own fields of Gee-1.0.Gee.TreeMultiSet
|
|
2120
2175
|
|
|
@@ -2165,6 +2220,7 @@ export module TreeSet {
|
|
|
2165
2220
|
// Own constructor properties of Gee-1.0.Gee.TreeSet
|
|
2166
2221
|
|
|
2167
2222
|
compare_func?: GLib.CompareFunc | null
|
|
2223
|
+
compareFunc?: GLib.CompareFunc | null
|
|
2168
2224
|
}
|
|
2169
2225
|
|
|
2170
2226
|
}
|
|
@@ -2174,10 +2230,12 @@ export interface TreeSet extends SortedSet {
|
|
|
2174
2230
|
// Own properties of Gee-1.0.Gee.TreeSet
|
|
2175
2231
|
|
|
2176
2232
|
compare_func: GLib.CompareFunc
|
|
2233
|
+
compareFunc: GLib.CompareFunc
|
|
2177
2234
|
|
|
2178
2235
|
// Conflicting properties
|
|
2179
2236
|
|
|
2180
2237
|
read_only_view: any
|
|
2238
|
+
readOnlyView: any
|
|
2181
2239
|
|
|
2182
2240
|
// Own fields of Gee-1.0.Gee.TreeSet
|
|
2183
2241
|
|
package/gee-1.0.d.ts
CHANGED
|
@@ -80,7 +80,9 @@ interface Collection extends Iterable {
|
|
|
80
80
|
|
|
81
81
|
readonly size: number
|
|
82
82
|
readonly is_empty: boolean
|
|
83
|
+
readonly isEmpty: boolean
|
|
83
84
|
readonly read_only_view: Collection
|
|
85
|
+
readonly readOnlyView: Collection
|
|
84
86
|
|
|
85
87
|
// Owm methods of Gee-1.0.Gee.Collection
|
|
86
88
|
|
|
@@ -269,6 +271,7 @@ interface Iterable extends GObject.Object {
|
|
|
269
271
|
// Own properties of Gee-1.0.Gee.Iterable
|
|
270
272
|
|
|
271
273
|
readonly element_type: GObject.GType
|
|
274
|
+
readonly elementType: GObject.GType
|
|
272
275
|
|
|
273
276
|
// Owm methods of Gee-1.0.Gee.Iterable
|
|
274
277
|
|
|
@@ -364,6 +367,7 @@ interface List extends Collection {
|
|
|
364
367
|
// Own properties of Gee-1.0.Gee.List
|
|
365
368
|
|
|
366
369
|
readonly read_only_view: any
|
|
370
|
+
readonly readOnlyView: any
|
|
367
371
|
|
|
368
372
|
// Owm methods of Gee-1.0.Gee.List
|
|
369
373
|
|
|
@@ -492,12 +496,16 @@ interface Map extends GObject.Object, Iterable {
|
|
|
492
496
|
|
|
493
497
|
readonly size: number
|
|
494
498
|
readonly is_empty: boolean
|
|
499
|
+
readonly isEmpty: boolean
|
|
495
500
|
readonly keys: Set
|
|
496
501
|
readonly values: Collection
|
|
497
502
|
readonly entries: Set
|
|
498
503
|
readonly read_only_view: Map
|
|
504
|
+
readonly readOnlyView: Map
|
|
499
505
|
readonly key_type: GObject.GType
|
|
506
|
+
readonly keyType: GObject.GType
|
|
500
507
|
readonly value_type: GObject.GType
|
|
508
|
+
readonly valueType: GObject.GType
|
|
501
509
|
|
|
502
510
|
// Owm methods of Gee-1.0.Gee.Map
|
|
503
511
|
|
|
@@ -764,7 +772,9 @@ interface Queue extends Collection {
|
|
|
764
772
|
|
|
765
773
|
readonly capacity: number
|
|
766
774
|
readonly remaining_capacity: number
|
|
775
|
+
readonly remainingCapacity: number
|
|
767
776
|
readonly is_full: boolean
|
|
777
|
+
readonly isFull: boolean
|
|
768
778
|
|
|
769
779
|
// Owm methods of Gee-1.0.Gee.Queue
|
|
770
780
|
|
|
@@ -836,6 +846,7 @@ interface Set extends Collection {
|
|
|
836
846
|
// Own properties of Gee-1.0.Gee.Set
|
|
837
847
|
|
|
838
848
|
readonly read_only_view: any
|
|
849
|
+
readonly readOnlyView: any
|
|
839
850
|
|
|
840
851
|
// Class property signals of Gee-1.0.Gee.Set
|
|
841
852
|
|
|
@@ -889,6 +900,7 @@ interface SortedSet extends Set {
|
|
|
889
900
|
// Conflicting properties
|
|
890
901
|
|
|
891
902
|
read_only_view: any
|
|
903
|
+
readOnlyView: any
|
|
892
904
|
|
|
893
905
|
// Owm methods of Gee-1.0.Gee.SortedSet
|
|
894
906
|
|
|
@@ -975,7 +987,9 @@ interface AbstractCollection extends Iterable, Collection {
|
|
|
975
987
|
|
|
976
988
|
readonly size: number
|
|
977
989
|
readonly is_empty: boolean
|
|
990
|
+
readonly isEmpty: boolean
|
|
978
991
|
readonly read_only_view: Collection
|
|
992
|
+
readonly readOnlyView: Collection
|
|
979
993
|
|
|
980
994
|
// Own fields of Gee-1.0.Gee.AbstractCollection
|
|
981
995
|
|
|
@@ -1055,6 +1069,7 @@ interface AbstractList extends List {
|
|
|
1055
1069
|
// Own properties of Gee-1.0.Gee.AbstractList
|
|
1056
1070
|
|
|
1057
1071
|
readonly read_only_view: any
|
|
1072
|
+
readonly readOnlyView: any
|
|
1058
1073
|
|
|
1059
1074
|
// Own fields of Gee-1.0.Gee.AbstractList
|
|
1060
1075
|
|
|
@@ -1144,10 +1159,12 @@ interface AbstractMap extends Iterable, Map {
|
|
|
1144
1159
|
|
|
1145
1160
|
readonly size: number
|
|
1146
1161
|
readonly is_empty: boolean
|
|
1162
|
+
readonly isEmpty: boolean
|
|
1147
1163
|
readonly keys: Set
|
|
1148
1164
|
readonly values: Collection
|
|
1149
1165
|
readonly entries: Set
|
|
1150
1166
|
readonly read_only_view: Map
|
|
1167
|
+
readonly readOnlyView: Map
|
|
1151
1168
|
|
|
1152
1169
|
// Own fields of Gee-1.0.Gee.AbstractMap
|
|
1153
1170
|
|
|
@@ -1346,7 +1363,9 @@ interface AbstractQueue extends Queue {
|
|
|
1346
1363
|
|
|
1347
1364
|
readonly capacity: number
|
|
1348
1365
|
readonly remaining_capacity: number
|
|
1366
|
+
readonly remainingCapacity: number
|
|
1349
1367
|
readonly is_full: boolean
|
|
1368
|
+
readonly isFull: boolean
|
|
1350
1369
|
|
|
1351
1370
|
// Own fields of Gee-1.0.Gee.AbstractQueue
|
|
1352
1371
|
|
|
@@ -1423,6 +1442,7 @@ interface AbstractSet extends Set {
|
|
|
1423
1442
|
// Own properties of Gee-1.0.Gee.AbstractSet
|
|
1424
1443
|
|
|
1425
1444
|
readonly read_only_view: any
|
|
1445
|
+
readonly readOnlyView: any
|
|
1426
1446
|
|
|
1427
1447
|
// Own fields of Gee-1.0.Gee.AbstractSet
|
|
1428
1448
|
|
|
@@ -1480,6 +1500,7 @@ module ArrayList {
|
|
|
1480
1500
|
// Own constructor properties of Gee-1.0.Gee.ArrayList
|
|
1481
1501
|
|
|
1482
1502
|
equal_func?: GLib.EqualFunc | null
|
|
1503
|
+
equalFunc?: GLib.EqualFunc | null
|
|
1483
1504
|
}
|
|
1484
1505
|
|
|
1485
1506
|
}
|
|
@@ -1489,10 +1510,12 @@ interface ArrayList {
|
|
|
1489
1510
|
// Own properties of Gee-1.0.Gee.ArrayList
|
|
1490
1511
|
|
|
1491
1512
|
equal_func: GLib.EqualFunc
|
|
1513
|
+
equalFunc: GLib.EqualFunc
|
|
1492
1514
|
|
|
1493
1515
|
// Conflicting properties
|
|
1494
1516
|
|
|
1495
1517
|
read_only_view: any
|
|
1518
|
+
readOnlyView: any
|
|
1496
1519
|
|
|
1497
1520
|
// Own fields of Gee-1.0.Gee.ArrayList
|
|
1498
1521
|
|
|
@@ -1558,6 +1581,9 @@ module HashMap {
|
|
|
1558
1581
|
key_hash_func?: GLib.HashFunc | null
|
|
1559
1582
|
key_equal_func?: GLib.EqualFunc | null
|
|
1560
1583
|
value_equal_func?: GLib.EqualFunc | null
|
|
1584
|
+
keyHashFunc?: GLib.HashFunc | null
|
|
1585
|
+
keyEqualFunc?: GLib.EqualFunc | null
|
|
1586
|
+
valueEqualFunc?: GLib.EqualFunc | null
|
|
1561
1587
|
}
|
|
1562
1588
|
|
|
1563
1589
|
}
|
|
@@ -1567,8 +1593,11 @@ interface HashMap {
|
|
|
1567
1593
|
// Own properties of Gee-1.0.Gee.HashMap
|
|
1568
1594
|
|
|
1569
1595
|
key_hash_func: GLib.HashFunc
|
|
1596
|
+
keyHashFunc: GLib.HashFunc
|
|
1570
1597
|
key_equal_func: GLib.EqualFunc
|
|
1598
|
+
keyEqualFunc: GLib.EqualFunc
|
|
1571
1599
|
value_equal_func: GLib.EqualFunc
|
|
1600
|
+
valueEqualFunc: GLib.EqualFunc
|
|
1572
1601
|
|
|
1573
1602
|
// Own fields of Gee-1.0.Gee.HashMap
|
|
1574
1603
|
|
|
@@ -1635,6 +1664,8 @@ module HashMultiMap {
|
|
|
1635
1664
|
|
|
1636
1665
|
value_hash_func?: GLib.HashFunc | null
|
|
1637
1666
|
value_equal_func?: GLib.EqualFunc | null
|
|
1667
|
+
valueHashFunc?: GLib.HashFunc | null
|
|
1668
|
+
valueEqualFunc?: GLib.EqualFunc | null
|
|
1638
1669
|
}
|
|
1639
1670
|
|
|
1640
1671
|
}
|
|
@@ -1644,9 +1675,13 @@ interface HashMultiMap {
|
|
|
1644
1675
|
// Own properties of Gee-1.0.Gee.HashMultiMap
|
|
1645
1676
|
|
|
1646
1677
|
readonly key_hash_func: GLib.HashFunc
|
|
1678
|
+
readonly keyHashFunc: GLib.HashFunc
|
|
1647
1679
|
readonly key_equal_func: GLib.EqualFunc
|
|
1680
|
+
readonly keyEqualFunc: GLib.EqualFunc
|
|
1648
1681
|
value_hash_func: GLib.HashFunc
|
|
1682
|
+
valueHashFunc: GLib.HashFunc
|
|
1649
1683
|
value_equal_func: GLib.EqualFunc
|
|
1684
|
+
valueEqualFunc: GLib.EqualFunc
|
|
1650
1685
|
|
|
1651
1686
|
// Own fields of Gee-1.0.Gee.HashMultiMap
|
|
1652
1687
|
|
|
@@ -1702,7 +1737,9 @@ interface HashMultiSet {
|
|
|
1702
1737
|
// Own properties of Gee-1.0.Gee.HashMultiSet
|
|
1703
1738
|
|
|
1704
1739
|
readonly hash_func: GLib.HashFunc
|
|
1740
|
+
readonly hashFunc: GLib.HashFunc
|
|
1705
1741
|
readonly equal_func: GLib.EqualFunc
|
|
1742
|
+
readonly equalFunc: GLib.EqualFunc
|
|
1706
1743
|
|
|
1707
1744
|
// Own fields of Gee-1.0.Gee.HashMultiSet
|
|
1708
1745
|
|
|
@@ -1757,6 +1794,8 @@ module HashSet {
|
|
|
1757
1794
|
|
|
1758
1795
|
hash_func?: GLib.HashFunc | null
|
|
1759
1796
|
equal_func?: GLib.EqualFunc | null
|
|
1797
|
+
hashFunc?: GLib.HashFunc | null
|
|
1798
|
+
equalFunc?: GLib.EqualFunc | null
|
|
1760
1799
|
}
|
|
1761
1800
|
|
|
1762
1801
|
}
|
|
@@ -1766,11 +1805,14 @@ interface HashSet {
|
|
|
1766
1805
|
// Own properties of Gee-1.0.Gee.HashSet
|
|
1767
1806
|
|
|
1768
1807
|
hash_func: GLib.HashFunc
|
|
1808
|
+
hashFunc: GLib.HashFunc
|
|
1769
1809
|
equal_func: GLib.EqualFunc
|
|
1810
|
+
equalFunc: GLib.EqualFunc
|
|
1770
1811
|
|
|
1771
1812
|
// Conflicting properties
|
|
1772
1813
|
|
|
1773
1814
|
read_only_view: any
|
|
1815
|
+
readOnlyView: any
|
|
1774
1816
|
|
|
1775
1817
|
// Own fields of Gee-1.0.Gee.HashSet
|
|
1776
1818
|
|
|
@@ -1833,6 +1875,7 @@ module LinkedList {
|
|
|
1833
1875
|
// Own constructor properties of Gee-1.0.Gee.LinkedList
|
|
1834
1876
|
|
|
1835
1877
|
equal_func?: GLib.EqualFunc | null
|
|
1878
|
+
equalFunc?: GLib.EqualFunc | null
|
|
1836
1879
|
}
|
|
1837
1880
|
|
|
1838
1881
|
}
|
|
@@ -1842,10 +1885,12 @@ interface LinkedList extends Queue, Deque {
|
|
|
1842
1885
|
// Own properties of Gee-1.0.Gee.LinkedList
|
|
1843
1886
|
|
|
1844
1887
|
equal_func: GLib.EqualFunc
|
|
1888
|
+
equalFunc: GLib.EqualFunc
|
|
1845
1889
|
|
|
1846
1890
|
// Conflicting properties
|
|
1847
1891
|
|
|
1848
1892
|
read_only_view: any
|
|
1893
|
+
readOnlyView: any
|
|
1849
1894
|
|
|
1850
1895
|
// Own fields of Gee-1.0.Gee.LinkedList
|
|
1851
1896
|
|
|
@@ -1917,6 +1962,7 @@ module PriorityQueue {
|
|
|
1917
1962
|
// Own constructor properties of Gee-1.0.Gee.PriorityQueue
|
|
1918
1963
|
|
|
1919
1964
|
compare_func?: GLib.CompareFunc | null
|
|
1965
|
+
compareFunc?: GLib.CompareFunc | null
|
|
1920
1966
|
}
|
|
1921
1967
|
|
|
1922
1968
|
}
|
|
@@ -1926,6 +1972,7 @@ interface PriorityQueue {
|
|
|
1926
1972
|
// Own properties of Gee-1.0.Gee.PriorityQueue
|
|
1927
1973
|
|
|
1928
1974
|
compare_func: GLib.CompareFunc
|
|
1975
|
+
compareFunc: GLib.CompareFunc
|
|
1929
1976
|
|
|
1930
1977
|
// Own fields of Gee-1.0.Gee.PriorityQueue
|
|
1931
1978
|
|
|
@@ -1986,6 +2033,8 @@ module TreeMap {
|
|
|
1986
2033
|
|
|
1987
2034
|
key_compare_func?: GLib.CompareFunc | null
|
|
1988
2035
|
value_equal_func?: GLib.EqualFunc | null
|
|
2036
|
+
keyCompareFunc?: GLib.CompareFunc | null
|
|
2037
|
+
valueEqualFunc?: GLib.EqualFunc | null
|
|
1989
2038
|
}
|
|
1990
2039
|
|
|
1991
2040
|
}
|
|
@@ -1995,7 +2044,9 @@ interface TreeMap {
|
|
|
1995
2044
|
// Own properties of Gee-1.0.Gee.TreeMap
|
|
1996
2045
|
|
|
1997
2046
|
key_compare_func: GLib.CompareFunc
|
|
2047
|
+
keyCompareFunc: GLib.CompareFunc
|
|
1998
2048
|
value_equal_func: GLib.EqualFunc
|
|
2049
|
+
valueEqualFunc: GLib.EqualFunc
|
|
1999
2050
|
|
|
2000
2051
|
// Own fields of Gee-1.0.Gee.TreeMap
|
|
2001
2052
|
|
|
@@ -2058,6 +2109,7 @@ module TreeMultiMap {
|
|
|
2058
2109
|
// Own constructor properties of Gee-1.0.Gee.TreeMultiMap
|
|
2059
2110
|
|
|
2060
2111
|
value_compare_func?: GLib.CompareFunc | null
|
|
2112
|
+
valueCompareFunc?: GLib.CompareFunc | null
|
|
2061
2113
|
}
|
|
2062
2114
|
|
|
2063
2115
|
}
|
|
@@ -2067,7 +2119,9 @@ interface TreeMultiMap {
|
|
|
2067
2119
|
// Own properties of Gee-1.0.Gee.TreeMultiMap
|
|
2068
2120
|
|
|
2069
2121
|
readonly key_compare_func: GLib.CompareFunc
|
|
2122
|
+
readonly keyCompareFunc: GLib.CompareFunc
|
|
2070
2123
|
value_compare_func: GLib.CompareFunc
|
|
2124
|
+
valueCompareFunc: GLib.CompareFunc
|
|
2071
2125
|
|
|
2072
2126
|
// Own fields of Gee-1.0.Gee.TreeMultiMap
|
|
2073
2127
|
|
|
@@ -2117,6 +2171,7 @@ interface TreeMultiSet {
|
|
|
2117
2171
|
// Own properties of Gee-1.0.Gee.TreeMultiSet
|
|
2118
2172
|
|
|
2119
2173
|
readonly compare_func: GLib.CompareFunc
|
|
2174
|
+
readonly compareFunc: GLib.CompareFunc
|
|
2120
2175
|
|
|
2121
2176
|
// Own fields of Gee-1.0.Gee.TreeMultiSet
|
|
2122
2177
|
|
|
@@ -2167,6 +2222,7 @@ module TreeSet {
|
|
|
2167
2222
|
// Own constructor properties of Gee-1.0.Gee.TreeSet
|
|
2168
2223
|
|
|
2169
2224
|
compare_func?: GLib.CompareFunc | null
|
|
2225
|
+
compareFunc?: GLib.CompareFunc | null
|
|
2170
2226
|
}
|
|
2171
2227
|
|
|
2172
2228
|
}
|
|
@@ -2176,10 +2232,12 @@ interface TreeSet extends SortedSet {
|
|
|
2176
2232
|
// Own properties of Gee-1.0.Gee.TreeSet
|
|
2177
2233
|
|
|
2178
2234
|
compare_func: GLib.CompareFunc
|
|
2235
|
+
compareFunc: GLib.CompareFunc
|
|
2179
2236
|
|
|
2180
2237
|
// Conflicting properties
|
|
2181
2238
|
|
|
2182
2239
|
read_only_view: any
|
|
2240
|
+
readOnlyView: any
|
|
2183
2241
|
|
|
2184
2242
|
// Own fields of Gee-1.0.Gee.TreeSet
|
|
2185
2243
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gee-1.0",
|
|
3
|
-
"version": "1.0.0-3.2.
|
|
3
|
+
"version": "1.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gee-1.0, generated from library version 1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gee-1.0.js",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gee-1.0.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/gjs": "^3.2.
|
|
29
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
30
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
28
|
+
"@girs/gjs": "^3.2.6",
|
|
29
|
+
"@girs/glib-2.0": "^2.78.0-3.2.6",
|
|
30
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.6"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"typescript": "*"
|