@girs/gee-1.0 1.0.0-3.0.0-beta.12

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/gee-1.0.d.ts ADDED
@@ -0,0 +1,3089 @@
1
+
2
+ /*
3
+ * Type Definitions for Gjs (https://gjs.guide/)
4
+ *
5
+ * These type definitions are automatically generated, do not edit them by hand.
6
+ * If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gjs
7
+ */
8
+ /**
9
+ * Gee-1.0
10
+ */
11
+
12
+ import type GObject from '@girs/gobject-2.0';
13
+ import type GLib from '@girs/glib-2.0';
14
+
15
+ export namespace Gee {
16
+
17
+ function functions_get_equal_func_for(t: GObject.GType): GLib.EqualFunc
18
+ function functions_get_hash_func_for(t: GObject.GType): GLib.HashFunc
19
+ function functions_get_compare_func_for(t: GObject.GType): GLib.CompareFunc
20
+ function direct_compare(_val1?: any | null, _val2?: any | null): number
21
+ module BidirIterator {
22
+
23
+ // Constructor properties interface
24
+
25
+ interface ConstructorProperties extends Iterator.ConstructorProperties, GObject.Object.ConstructorProperties {
26
+ }
27
+
28
+ }
29
+
30
+ interface BidirIterator extends Iterator {
31
+
32
+ // Owm methods of Gee-1.0.Gee.BidirIterator
33
+
34
+ previous(): boolean
35
+ has_previous(): boolean
36
+ last(): boolean
37
+
38
+ // Own virtual methods of Gee-1.0.Gee.BidirIterator
39
+
40
+ vfunc_previous(): boolean
41
+ vfunc_has_previous(): boolean
42
+ vfunc_last(): boolean
43
+
44
+ // Class property signals of Gee-1.0.Gee.BidirIterator
45
+
46
+ connect(sigName: string, callback: (...args: any[]) => void): number
47
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
48
+ emit(sigName: string, ...args: any[]): void
49
+ disconnect(id: number): void
50
+ }
51
+
52
+ class BidirIterator extends GObject.Object {
53
+
54
+ // Own properties of Gee-1.0.Gee.BidirIterator
55
+
56
+ static name: string
57
+ static $gtype: GObject.GType<BidirIterator>
58
+
59
+ // Constructors of Gee-1.0.Gee.BidirIterator
60
+
61
+ constructor(config?: BidirIterator.ConstructorProperties)
62
+ _init(config?: BidirIterator.ConstructorProperties): void
63
+ }
64
+
65
+ module Collection {
66
+
67
+ // Constructor properties interface
68
+
69
+ interface ConstructorProperties extends Iterable.ConstructorProperties, GObject.Object.ConstructorProperties {
70
+ }
71
+
72
+ }
73
+
74
+ interface Collection extends Iterable {
75
+
76
+ // Own properties of Gee-1.0.Gee.Collection
77
+
78
+ readonly size: number
79
+ readonly is_empty: boolean
80
+ readonly read_only_view: Collection
81
+
82
+ // Owm methods of Gee-1.0.Gee.Collection
83
+
84
+ contains(item?: any | null): boolean
85
+ add(item?: any | null): boolean
86
+ remove(item?: any | null): boolean
87
+ clear(): void
88
+ add_all(collection: Collection): boolean
89
+ contains_all(collection: Collection): boolean
90
+ remove_all(collection: Collection): boolean
91
+ retain_all(collection: Collection): boolean
92
+ to_array(): any[]
93
+
94
+ // Own virtual methods of Gee-1.0.Gee.Collection
95
+
96
+ vfunc_contains(item?: any | null): boolean
97
+ vfunc_add(item?: any | null): boolean
98
+ vfunc_remove(item?: any | null): boolean
99
+ vfunc_clear(): void
100
+ vfunc_add_all(collection: Collection): boolean
101
+ vfunc_contains_all(collection: Collection): boolean
102
+ vfunc_remove_all(collection: Collection): boolean
103
+ vfunc_retain_all(collection: Collection): boolean
104
+ vfunc_to_array(): any[]
105
+
106
+ // Class property signals of Gee-1.0.Gee.Collection
107
+
108
+ connect(sigName: "notify::size", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
109
+ connect_after(sigName: "notify::size", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
110
+ emit(sigName: "notify::size", ...args: any[]): void
111
+ connect(sigName: "notify::is-empty", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
112
+ connect_after(sigName: "notify::is-empty", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
113
+ emit(sigName: "notify::is-empty", ...args: any[]): void
114
+ connect(sigName: "notify::read-only-view", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
115
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
116
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
117
+ connect(sigName: "notify::element-type", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
118
+ connect_after(sigName: "notify::element-type", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
119
+ emit(sigName: "notify::element-type", ...args: any[]): void
120
+ connect(sigName: string, callback: (...args: any[]) => void): number
121
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
122
+ emit(sigName: string, ...args: any[]): void
123
+ disconnect(id: number): void
124
+ }
125
+
126
+ class Collection extends GObject.Object {
127
+
128
+ // Own properties of Gee-1.0.Gee.Collection
129
+
130
+ static name: string
131
+ static $gtype: GObject.GType<Collection>
132
+
133
+ // Constructors of Gee-1.0.Gee.Collection
134
+
135
+ constructor(config?: Collection.ConstructorProperties)
136
+ _init(config?: Collection.ConstructorProperties): void
137
+ static empty(): Collection
138
+ }
139
+
140
+ module Comparable {
141
+
142
+ // Constructor properties interface
143
+
144
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
145
+ }
146
+
147
+ }
148
+
149
+ interface Comparable extends GObject.Object {
150
+
151
+ // Owm methods of Gee-1.0.Gee.Comparable
152
+
153
+ compare_to(object?: any | null): number
154
+
155
+ // Own virtual methods of Gee-1.0.Gee.Comparable
156
+
157
+ vfunc_compare_to(object?: any | null): number
158
+
159
+ // Class property signals of Gee-1.0.Gee.Comparable
160
+
161
+ connect(sigName: string, callback: (...args: any[]) => void): number
162
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
163
+ emit(sigName: string, ...args: any[]): void
164
+ disconnect(id: number): void
165
+ }
166
+
167
+ class Comparable {
168
+
169
+ // Own properties of Gee-1.0.Gee.Comparable
170
+
171
+ static name: string
172
+ static $gtype: GObject.GType<Comparable>
173
+
174
+ // Constructors of Gee-1.0.Gee.Comparable
175
+
176
+ constructor(config?: Comparable.ConstructorProperties)
177
+ _init(config?: Comparable.ConstructorProperties): void
178
+ }
179
+
180
+ module Deque {
181
+
182
+ // Constructor properties interface
183
+
184
+ interface ConstructorProperties extends Queue.ConstructorProperties, GObject.Object.ConstructorProperties {
185
+ }
186
+
187
+ }
188
+
189
+ interface Deque extends Queue {
190
+
191
+ // Owm methods of Gee-1.0.Gee.Deque
192
+
193
+ offer_head(element?: any | null): boolean
194
+ peek_head(): any | null
195
+ poll_head(): any | null
196
+ drain_head(recipient: Collection, amount: number): number
197
+ offer_tail(element?: any | null): boolean
198
+ peek_tail(): any | null
199
+ poll_tail(): any | null
200
+ drain_tail(recipient: Collection, amount: number): number
201
+
202
+ // Own virtual methods of Gee-1.0.Gee.Deque
203
+
204
+ vfunc_offer_head(element?: any | null): boolean
205
+ vfunc_peek_head(): any | null
206
+ vfunc_poll_head(): any | null
207
+ vfunc_drain_head(recipient: Collection, amount: number): number
208
+ vfunc_offer_tail(element?: any | null): boolean
209
+ vfunc_peek_tail(): any | null
210
+ vfunc_poll_tail(): any | null
211
+ vfunc_drain_tail(recipient: Collection, amount: number): number
212
+
213
+ // Class property signals of Gee-1.0.Gee.Deque
214
+
215
+ connect(sigName: "notify::capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
216
+ connect_after(sigName: "notify::capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
217
+ emit(sigName: "notify::capacity", ...args: any[]): void
218
+ connect(sigName: "notify::remaining-capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
219
+ connect_after(sigName: "notify::remaining-capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
220
+ emit(sigName: "notify::remaining-capacity", ...args: any[]): void
221
+ connect(sigName: "notify::is-full", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
222
+ connect_after(sigName: "notify::is-full", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
223
+ emit(sigName: "notify::is-full", ...args: any[]): void
224
+ connect(sigName: "notify::size", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
225
+ connect_after(sigName: "notify::size", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
226
+ emit(sigName: "notify::size", ...args: any[]): void
227
+ connect(sigName: "notify::is-empty", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
228
+ connect_after(sigName: "notify::is-empty", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
229
+ emit(sigName: "notify::is-empty", ...args: any[]): void
230
+ connect(sigName: "notify::read-only-view", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
231
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
232
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
233
+ connect(sigName: "notify::element-type", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
234
+ connect_after(sigName: "notify::element-type", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
235
+ emit(sigName: "notify::element-type", ...args: any[]): void
236
+ connect(sigName: string, callback: (...args: any[]) => void): number
237
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
238
+ emit(sigName: string, ...args: any[]): void
239
+ disconnect(id: number): void
240
+ }
241
+
242
+ class Deque extends GObject.Object {
243
+
244
+ // Own properties of Gee-1.0.Gee.Deque
245
+
246
+ static name: string
247
+ static $gtype: GObject.GType<Deque>
248
+
249
+ // Constructors of Gee-1.0.Gee.Deque
250
+
251
+ constructor(config?: Deque.ConstructorProperties)
252
+ _init(config?: Deque.ConstructorProperties): void
253
+ }
254
+
255
+ module Iterable {
256
+
257
+ // Constructor properties interface
258
+
259
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
260
+ }
261
+
262
+ }
263
+
264
+ interface Iterable extends GObject.Object {
265
+
266
+ // Own properties of Gee-1.0.Gee.Iterable
267
+
268
+ readonly element_type: GObject.GType
269
+
270
+ // Owm methods of Gee-1.0.Gee.Iterable
271
+
272
+ iterator(): Iterator
273
+
274
+ // Own virtual methods of Gee-1.0.Gee.Iterable
275
+
276
+ vfunc_iterator(): Iterator
277
+
278
+ // Class property signals of Gee-1.0.Gee.Iterable
279
+
280
+ connect(sigName: "notify::element-type", callback: (($obj: Iterable, pspec: GObject.ParamSpec) => void)): number
281
+ connect_after(sigName: "notify::element-type", callback: (($obj: Iterable, pspec: GObject.ParamSpec) => void)): number
282
+ emit(sigName: "notify::element-type", ...args: any[]): void
283
+ connect(sigName: string, callback: (...args: any[]) => void): number
284
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
285
+ emit(sigName: string, ...args: any[]): void
286
+ disconnect(id: number): void
287
+ }
288
+
289
+ class Iterable {
290
+
291
+ // Own properties of Gee-1.0.Gee.Iterable
292
+
293
+ static name: string
294
+ static $gtype: GObject.GType<Iterable>
295
+
296
+ // Constructors of Gee-1.0.Gee.Iterable
297
+
298
+ constructor(config?: Iterable.ConstructorProperties)
299
+ _init(config?: Iterable.ConstructorProperties): void
300
+ }
301
+
302
+ module Iterator {
303
+
304
+ // Constructor properties interface
305
+
306
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
307
+ }
308
+
309
+ }
310
+
311
+ interface Iterator extends GObject.Object {
312
+
313
+ // Owm methods of Gee-1.0.Gee.Iterator
314
+
315
+ next(): boolean
316
+ has_next(): boolean
317
+ first(): boolean
318
+ get(): any | null
319
+ remove(): void
320
+
321
+ // Own virtual methods of Gee-1.0.Gee.Iterator
322
+
323
+ vfunc_next(): boolean
324
+ vfunc_has_next(): boolean
325
+ vfunc_first(): boolean
326
+ vfunc_get(): any | null
327
+ vfunc_remove(): void
328
+
329
+ // Class property signals of Gee-1.0.Gee.Iterator
330
+
331
+ connect(sigName: string, callback: (...args: any[]) => void): number
332
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
333
+ emit(sigName: string, ...args: any[]): void
334
+ disconnect(id: number): void
335
+ }
336
+
337
+ class Iterator {
338
+
339
+ // Own properties of Gee-1.0.Gee.Iterator
340
+
341
+ static name: string
342
+ static $gtype: GObject.GType<Iterator>
343
+
344
+ // Constructors of Gee-1.0.Gee.Iterator
345
+
346
+ constructor(config?: Iterator.ConstructorProperties)
347
+ _init(config?: Iterator.ConstructorProperties): void
348
+ }
349
+
350
+ module List {
351
+
352
+ // Constructor properties interface
353
+
354
+ interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
355
+ }
356
+
357
+ }
358
+
359
+ interface List extends Collection {
360
+
361
+ // Own properties of Gee-1.0.Gee.List
362
+
363
+ readonly read_only_view: any
364
+
365
+ // Owm methods of Gee-1.0.Gee.List
366
+
367
+ list_iterator(): ListIterator
368
+ get(index: number): any | null
369
+ set(index: number, item?: any | null): void
370
+ index_of(item?: any | null): number
371
+ insert(index: number, item?: any | null): void
372
+ remove_at(index: number): any | null
373
+ slice(start: number, stop: number): List | null
374
+ first(): any | null
375
+ last(): any | null
376
+ insert_all(index: number, collection: Collection): void
377
+ sort(compare_func?: GLib.CompareFunc | null): void
378
+
379
+ // Own virtual methods of Gee-1.0.Gee.List
380
+
381
+ vfunc_list_iterator(): ListIterator
382
+ vfunc_get(index: number): any | null
383
+ vfunc_set(index: number, item?: any | null): void
384
+ vfunc_index_of(item?: any | null): number
385
+ vfunc_insert(index: number, item?: any | null): void
386
+ vfunc_remove_at(index: number): any | null
387
+ vfunc_slice(start: number, stop: number): List | null
388
+ vfunc_first(): any | null
389
+ vfunc_last(): any | null
390
+ vfunc_insert_all(index: number, collection: Collection): void
391
+ vfunc_sort(compare_func?: GLib.CompareFunc | null): void
392
+
393
+ // Class property signals of Gee-1.0.Gee.List
394
+
395
+ connect(sigName: "notify::read-only-view", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
396
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
397
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
398
+ connect(sigName: "notify::size", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
399
+ connect_after(sigName: "notify::size", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
400
+ emit(sigName: "notify::size", ...args: any[]): void
401
+ connect(sigName: "notify::is-empty", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
402
+ connect_after(sigName: "notify::is-empty", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
403
+ emit(sigName: "notify::is-empty", ...args: any[]): void
404
+ connect(sigName: "notify::element-type", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
405
+ connect_after(sigName: "notify::element-type", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
406
+ emit(sigName: "notify::element-type", ...args: any[]): void
407
+ connect(sigName: string, callback: (...args: any[]) => void): number
408
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
409
+ emit(sigName: string, ...args: any[]): void
410
+ disconnect(id: number): void
411
+ }
412
+
413
+ class List extends GObject.Object {
414
+
415
+ // Own properties of Gee-1.0.Gee.List
416
+
417
+ static name: string
418
+ static $gtype: GObject.GType<List>
419
+
420
+ // Constructors of Gee-1.0.Gee.List
421
+
422
+ constructor(config?: List.ConstructorProperties)
423
+ _init(config?: List.ConstructorProperties): void
424
+ static empty(): List
425
+
426
+ // Overloads of empty
427
+
428
+ static empty(): Collection
429
+ }
430
+
431
+ module ListIterator {
432
+
433
+ // Constructor properties interface
434
+
435
+ interface ConstructorProperties extends BidirIterator.ConstructorProperties, GObject.Object.ConstructorProperties {
436
+ }
437
+
438
+ }
439
+
440
+ interface ListIterator extends BidirIterator {
441
+
442
+ // Owm methods of Gee-1.0.Gee.ListIterator
443
+
444
+ set(item?: any | null): void
445
+ insert(item?: any | null): void
446
+ add(item?: any | null): void
447
+ index(): number
448
+
449
+ // Own virtual methods of Gee-1.0.Gee.ListIterator
450
+
451
+ vfunc_set(item?: any | null): void
452
+ vfunc_insert(item?: any | null): void
453
+ vfunc_add(item?: any | null): void
454
+ vfunc_index(): number
455
+
456
+ // Class property signals of Gee-1.0.Gee.ListIterator
457
+
458
+ connect(sigName: string, callback: (...args: any[]) => void): number
459
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
460
+ emit(sigName: string, ...args: any[]): void
461
+ disconnect(id: number): void
462
+ }
463
+
464
+ class ListIterator extends GObject.Object {
465
+
466
+ // Own properties of Gee-1.0.Gee.ListIterator
467
+
468
+ static name: string
469
+ static $gtype: GObject.GType<ListIterator>
470
+
471
+ // Constructors of Gee-1.0.Gee.ListIterator
472
+
473
+ constructor(config?: ListIterator.ConstructorProperties)
474
+ _init(config?: ListIterator.ConstructorProperties): void
475
+ }
476
+
477
+ module Map {
478
+
479
+ // Constructor properties interface
480
+
481
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties, Iterable.ConstructorProperties {
482
+ }
483
+
484
+ }
485
+
486
+ interface Map extends GObject.Object, Iterable {
487
+
488
+ // Own properties of Gee-1.0.Gee.Map
489
+
490
+ readonly size: number
491
+ readonly is_empty: boolean
492
+ readonly keys: Set
493
+ readonly values: Collection
494
+ readonly entries: Set
495
+ readonly read_only_view: Map
496
+ readonly key_type: GObject.GType
497
+ readonly value_type: GObject.GType
498
+
499
+ // Owm methods of Gee-1.0.Gee.Map
500
+
501
+ has_key(key?: any | null): boolean
502
+ contains(key?: any | null): boolean
503
+ has(key?: any | null, value?: any | null): boolean
504
+ get(key?: any | null): any | null
505
+ set(key?: any | null, value?: any | null): void
506
+ unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
507
+ remove(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
508
+ clear(): void
509
+ map_iterator(): MapIterator
510
+ set_all(map: Map): void
511
+ unset_all(map: Map): boolean
512
+ remove_all(map: Map): boolean
513
+ has_all(map: Map): boolean
514
+ contains_all(map: Map): boolean
515
+
516
+ // Own virtual methods of Gee-1.0.Gee.Map
517
+
518
+ vfunc_has_key(key?: any | null): boolean
519
+ vfunc_contains(key?: any | null): boolean
520
+ vfunc_has(key?: any | null, value?: any | null): boolean
521
+ vfunc_get(key?: any | null): any | null
522
+ vfunc_set(key?: any | null, value?: any | null): void
523
+ vfunc_unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
524
+ vfunc_remove(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
525
+ vfunc_clear(): void
526
+ vfunc_map_iterator(): MapIterator
527
+ vfunc_set_all(map: Map): void
528
+ vfunc_unset_all(map: Map): boolean
529
+ vfunc_remove_all(map: Map): boolean
530
+ vfunc_has_all(map: Map): boolean
531
+ vfunc_contains_all(map: Map): boolean
532
+
533
+ // Class property signals of Gee-1.0.Gee.Map
534
+
535
+ connect(sigName: "notify::size", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
536
+ connect_after(sigName: "notify::size", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
537
+ emit(sigName: "notify::size", ...args: any[]): void
538
+ connect(sigName: "notify::is-empty", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
539
+ connect_after(sigName: "notify::is-empty", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
540
+ emit(sigName: "notify::is-empty", ...args: any[]): void
541
+ connect(sigName: "notify::keys", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
542
+ connect_after(sigName: "notify::keys", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
543
+ emit(sigName: "notify::keys", ...args: any[]): void
544
+ connect(sigName: "notify::values", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
545
+ connect_after(sigName: "notify::values", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
546
+ emit(sigName: "notify::values", ...args: any[]): void
547
+ connect(sigName: "notify::entries", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
548
+ connect_after(sigName: "notify::entries", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
549
+ emit(sigName: "notify::entries", ...args: any[]): void
550
+ connect(sigName: "notify::read-only-view", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
551
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
552
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
553
+ connect(sigName: "notify::key-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
554
+ connect_after(sigName: "notify::key-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
555
+ emit(sigName: "notify::key-type", ...args: any[]): void
556
+ connect(sigName: "notify::value-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
557
+ connect_after(sigName: "notify::value-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
558
+ emit(sigName: "notify::value-type", ...args: any[]): void
559
+ connect(sigName: "notify::element-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
560
+ connect_after(sigName: "notify::element-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
561
+ emit(sigName: "notify::element-type", ...args: any[]): void
562
+ connect(sigName: string, callback: (...args: any[]) => void): number
563
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
564
+ emit(sigName: string, ...args: any[]): void
565
+ disconnect(id: number): void
566
+ }
567
+
568
+ class Map {
569
+
570
+ // Own properties of Gee-1.0.Gee.Map
571
+
572
+ static name: string
573
+ static $gtype: GObject.GType<Map>
574
+
575
+ // Constructors of Gee-1.0.Gee.Map
576
+
577
+ constructor(config?: Map.ConstructorProperties)
578
+ _init(config?: Map.ConstructorProperties): void
579
+ static empty(): Map
580
+ }
581
+
582
+ module MapIterator {
583
+
584
+ // Constructor properties interface
585
+
586
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
587
+ }
588
+
589
+ }
590
+
591
+ interface MapIterator extends GObject.Object {
592
+
593
+ // Owm methods of Gee-1.0.Gee.MapIterator
594
+
595
+ next(): boolean
596
+ has_next(): boolean
597
+ first(): boolean
598
+ get_key(): any | null
599
+ get_value(): any | null
600
+ set_value(value?: any | null): void
601
+ unset(): void
602
+
603
+ // Own virtual methods of Gee-1.0.Gee.MapIterator
604
+
605
+ vfunc_next(): boolean
606
+ vfunc_has_next(): boolean
607
+ vfunc_first(): boolean
608
+ vfunc_get_key(): any | null
609
+ vfunc_get_value(): any | null
610
+ vfunc_set_value(value?: any | null): void
611
+ vfunc_unset(): void
612
+
613
+ // Class property signals of Gee-1.0.Gee.MapIterator
614
+
615
+ connect(sigName: string, callback: (...args: any[]) => void): number
616
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
617
+ emit(sigName: string, ...args: any[]): void
618
+ disconnect(id: number): void
619
+ }
620
+
621
+ class MapIterator {
622
+
623
+ // Own properties of Gee-1.0.Gee.MapIterator
624
+
625
+ static name: string
626
+ static $gtype: GObject.GType<MapIterator>
627
+
628
+ // Constructors of Gee-1.0.Gee.MapIterator
629
+
630
+ constructor(config?: MapIterator.ConstructorProperties)
631
+ _init(config?: MapIterator.ConstructorProperties): void
632
+ }
633
+
634
+ module MultiMap {
635
+
636
+ // Constructor properties interface
637
+
638
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
639
+ }
640
+
641
+ }
642
+
643
+ interface MultiMap extends GObject.Object {
644
+
645
+ // Own properties of Gee-1.0.Gee.MultiMap
646
+
647
+ readonly size: number
648
+
649
+ // Owm methods of Gee-1.0.Gee.MultiMap
650
+
651
+ get_keys(): Set
652
+ get_all_keys(): MultiSet
653
+ get_values(): Collection
654
+ contains(key?: any | null): boolean
655
+ get(key?: any | null): Collection
656
+ set(key?: any | null, value?: any | null): void
657
+ remove(key?: any | null, value?: any | null): boolean
658
+ remove_all(key?: any | null): boolean
659
+ clear(): void
660
+
661
+ // Own virtual methods of Gee-1.0.Gee.MultiMap
662
+
663
+ vfunc_get_keys(): Set
664
+ vfunc_get_all_keys(): MultiSet
665
+ vfunc_get_values(): Collection
666
+ vfunc_contains(key?: any | null): boolean
667
+ vfunc_get(key?: any | null): Collection
668
+ vfunc_set(key?: any | null, value?: any | null): void
669
+ vfunc_remove(key?: any | null, value?: any | null): boolean
670
+ vfunc_remove_all(key?: any | null): boolean
671
+ vfunc_clear(): void
672
+
673
+ // Class property signals of Gee-1.0.Gee.MultiMap
674
+
675
+ connect(sigName: "notify::size", callback: (($obj: MultiMap, pspec: GObject.ParamSpec) => void)): number
676
+ connect_after(sigName: "notify::size", callback: (($obj: MultiMap, pspec: GObject.ParamSpec) => void)): number
677
+ emit(sigName: "notify::size", ...args: any[]): void
678
+ connect(sigName: string, callback: (...args: any[]) => void): number
679
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
680
+ emit(sigName: string, ...args: any[]): void
681
+ disconnect(id: number): void
682
+ }
683
+
684
+ class MultiMap {
685
+
686
+ // Own properties of Gee-1.0.Gee.MultiMap
687
+
688
+ static name: string
689
+ static $gtype: GObject.GType<MultiMap>
690
+
691
+ // Constructors of Gee-1.0.Gee.MultiMap
692
+
693
+ constructor(config?: MultiMap.ConstructorProperties)
694
+ _init(config?: MultiMap.ConstructorProperties): void
695
+ }
696
+
697
+ module MultiSet {
698
+
699
+ // Constructor properties interface
700
+
701
+ interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
702
+ }
703
+
704
+ }
705
+
706
+ interface MultiSet extends Collection {
707
+
708
+ // Owm methods of Gee-1.0.Gee.MultiSet
709
+
710
+ count(item?: any | null): number
711
+
712
+ // Own virtual methods of Gee-1.0.Gee.MultiSet
713
+
714
+ vfunc_count(item?: any | null): number
715
+
716
+ // Class property signals of Gee-1.0.Gee.MultiSet
717
+
718
+ connect(sigName: "notify::size", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
719
+ connect_after(sigName: "notify::size", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
720
+ emit(sigName: "notify::size", ...args: any[]): void
721
+ connect(sigName: "notify::is-empty", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
722
+ connect_after(sigName: "notify::is-empty", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
723
+ emit(sigName: "notify::is-empty", ...args: any[]): void
724
+ connect(sigName: "notify::read-only-view", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
725
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
726
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
727
+ connect(sigName: "notify::element-type", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
728
+ connect_after(sigName: "notify::element-type", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
729
+ emit(sigName: "notify::element-type", ...args: any[]): void
730
+ connect(sigName: string, callback: (...args: any[]) => void): number
731
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
732
+ emit(sigName: string, ...args: any[]): void
733
+ disconnect(id: number): void
734
+ }
735
+
736
+ class MultiSet extends GObject.Object {
737
+
738
+ // Own properties of Gee-1.0.Gee.MultiSet
739
+
740
+ static name: string
741
+ static $gtype: GObject.GType<MultiSet>
742
+
743
+ // Constructors of Gee-1.0.Gee.MultiSet
744
+
745
+ constructor(config?: MultiSet.ConstructorProperties)
746
+ _init(config?: MultiSet.ConstructorProperties): void
747
+ }
748
+
749
+ module Queue {
750
+
751
+ // Constructor properties interface
752
+
753
+ interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
754
+ }
755
+
756
+ }
757
+
758
+ interface Queue extends Collection {
759
+
760
+ // Own properties of Gee-1.0.Gee.Queue
761
+
762
+ readonly capacity: number
763
+ readonly remaining_capacity: number
764
+ readonly is_full: boolean
765
+
766
+ // Owm methods of Gee-1.0.Gee.Queue
767
+
768
+ offer(element?: any | null): boolean
769
+ peek(): any | null
770
+ poll(): any | null
771
+ drain(recipient: Collection, amount: number): number
772
+
773
+ // Own virtual methods of Gee-1.0.Gee.Queue
774
+
775
+ vfunc_offer(element?: any | null): boolean
776
+ vfunc_peek(): any | null
777
+ vfunc_poll(): any | null
778
+ vfunc_drain(recipient: Collection, amount: number): number
779
+
780
+ // Class property signals of Gee-1.0.Gee.Queue
781
+
782
+ connect(sigName: "notify::capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
783
+ connect_after(sigName: "notify::capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
784
+ emit(sigName: "notify::capacity", ...args: any[]): void
785
+ connect(sigName: "notify::remaining-capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
786
+ connect_after(sigName: "notify::remaining-capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
787
+ emit(sigName: "notify::remaining-capacity", ...args: any[]): void
788
+ connect(sigName: "notify::is-full", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
789
+ connect_after(sigName: "notify::is-full", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
790
+ emit(sigName: "notify::is-full", ...args: any[]): void
791
+ connect(sigName: "notify::size", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
792
+ connect_after(sigName: "notify::size", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
793
+ emit(sigName: "notify::size", ...args: any[]): void
794
+ connect(sigName: "notify::is-empty", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
795
+ connect_after(sigName: "notify::is-empty", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
796
+ emit(sigName: "notify::is-empty", ...args: any[]): void
797
+ connect(sigName: "notify::read-only-view", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
798
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
799
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
800
+ connect(sigName: "notify::element-type", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
801
+ connect_after(sigName: "notify::element-type", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
802
+ emit(sigName: "notify::element-type", ...args: any[]): void
803
+ connect(sigName: string, callback: (...args: any[]) => void): number
804
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
805
+ emit(sigName: string, ...args: any[]): void
806
+ disconnect(id: number): void
807
+ }
808
+
809
+ class Queue extends GObject.Object {
810
+
811
+ // Own properties of Gee-1.0.Gee.Queue
812
+
813
+ static name: string
814
+ static $gtype: GObject.GType<Queue>
815
+
816
+ // Constructors of Gee-1.0.Gee.Queue
817
+
818
+ constructor(config?: Queue.ConstructorProperties)
819
+ _init(config?: Queue.ConstructorProperties): void
820
+ }
821
+
822
+ module Set {
823
+
824
+ // Constructor properties interface
825
+
826
+ interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
827
+ }
828
+
829
+ }
830
+
831
+ interface Set extends Collection {
832
+
833
+ // Own properties of Gee-1.0.Gee.Set
834
+
835
+ readonly read_only_view: any
836
+
837
+ // Class property signals of Gee-1.0.Gee.Set
838
+
839
+ connect(sigName: "notify::read-only-view", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
840
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
841
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
842
+ connect(sigName: "notify::size", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
843
+ connect_after(sigName: "notify::size", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
844
+ emit(sigName: "notify::size", ...args: any[]): void
845
+ connect(sigName: "notify::is-empty", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
846
+ connect_after(sigName: "notify::is-empty", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
847
+ emit(sigName: "notify::is-empty", ...args: any[]): void
848
+ connect(sigName: "notify::element-type", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
849
+ connect_after(sigName: "notify::element-type", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
850
+ emit(sigName: "notify::element-type", ...args: any[]): void
851
+ connect(sigName: string, callback: (...args: any[]) => void): number
852
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
853
+ emit(sigName: string, ...args: any[]): void
854
+ disconnect(id: number): void
855
+ }
856
+
857
+ class Set extends GObject.Object {
858
+
859
+ // Own properties of Gee-1.0.Gee.Set
860
+
861
+ static name: string
862
+ static $gtype: GObject.GType<Set>
863
+
864
+ // Constructors of Gee-1.0.Gee.Set
865
+
866
+ constructor(config?: Set.ConstructorProperties)
867
+ _init(config?: Set.ConstructorProperties): void
868
+ static empty(): Set
869
+
870
+ // Overloads of empty
871
+
872
+ static empty(): Collection
873
+ }
874
+
875
+ module SortedSet {
876
+
877
+ // Constructor properties interface
878
+
879
+ interface ConstructorProperties extends Set.ConstructorProperties, GObject.Object.ConstructorProperties {
880
+ }
881
+
882
+ }
883
+
884
+ interface SortedSet extends Set {
885
+
886
+ // Conflicting properties
887
+
888
+ read_only_view: any
889
+
890
+ // Owm methods of Gee-1.0.Gee.SortedSet
891
+
892
+ first(): any | null
893
+ last(): any | null
894
+ bidir_iterator(): BidirIterator
895
+ iterator_at(element?: any | null): BidirIterator | null
896
+ lower(element?: any | null): any | null
897
+ higher(element?: any | null): any | null
898
+ floor(element?: any | null): any | null
899
+ ceil(element?: any | null): any | null
900
+ head_set(before?: any | null): SortedSet
901
+ tail_set(after?: any | null): SortedSet
902
+ sub_set(from?: any | null, to?: any | null): SortedSet
903
+
904
+ // Own virtual methods of Gee-1.0.Gee.SortedSet
905
+
906
+ vfunc_first(): any | null
907
+ vfunc_last(): any | null
908
+ vfunc_bidir_iterator(): BidirIterator
909
+ vfunc_iterator_at(element?: any | null): BidirIterator | null
910
+ vfunc_lower(element?: any | null): any | null
911
+ vfunc_higher(element?: any | null): any | null
912
+ vfunc_floor(element?: any | null): any | null
913
+ vfunc_ceil(element?: any | null): any | null
914
+ vfunc_head_set(before?: any | null): SortedSet
915
+ vfunc_tail_set(after?: any | null): SortedSet
916
+ vfunc_sub_set(from?: any | null, to?: any | null): SortedSet
917
+
918
+ // Class property signals of Gee-1.0.Gee.SortedSet
919
+
920
+ connect(sigName: "notify::read-only-view", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
921
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
922
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
923
+ connect(sigName: "notify::size", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
924
+ connect_after(sigName: "notify::size", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
925
+ emit(sigName: "notify::size", ...args: any[]): void
926
+ connect(sigName: "notify::is-empty", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
927
+ connect_after(sigName: "notify::is-empty", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
928
+ emit(sigName: "notify::is-empty", ...args: any[]): void
929
+ connect(sigName: "notify::element-type", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
930
+ connect_after(sigName: "notify::element-type", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
931
+ emit(sigName: "notify::element-type", ...args: any[]): void
932
+ connect(sigName: string, callback: (...args: any[]) => void): number
933
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
934
+ emit(sigName: string, ...args: any[]): void
935
+ disconnect(id: number): void
936
+ }
937
+
938
+ class SortedSet extends GObject.Object {
939
+
940
+ // Own properties of Gee-1.0.Gee.SortedSet
941
+
942
+ static name: string
943
+ static $gtype: GObject.GType<SortedSet>
944
+
945
+ // Constructors of Gee-1.0.Gee.SortedSet
946
+
947
+ constructor(config?: SortedSet.ConstructorProperties)
948
+ _init(config?: SortedSet.ConstructorProperties): void
949
+
950
+ // Conflicting static methods
951
+
952
+ static empty(): Set
953
+
954
+ // Overloads of empty
955
+
956
+ static empty(): Collection
957
+ static empty(): Collection
958
+ }
959
+
960
+ module AbstractCollection {
961
+
962
+ // Constructor properties interface
963
+
964
+ interface ConstructorProperties extends Iterable.ConstructorProperties, Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
965
+ }
966
+
967
+ }
968
+
969
+ interface AbstractCollection extends Iterable, Collection {
970
+
971
+ // Own properties of Gee-1.0.Gee.AbstractCollection
972
+
973
+ readonly size: number
974
+ readonly is_empty: boolean
975
+ readonly read_only_view: Collection
976
+
977
+ // Own fields of Gee-1.0.Gee.AbstractCollection
978
+
979
+ parent_instance: GObject.Object
980
+ priv: AbstractCollectionPrivate
981
+
982
+ // Owm methods of Gee-1.0.Gee.AbstractCollection
983
+
984
+ contains(item?: any | null): boolean
985
+ add(item?: any | null): boolean
986
+ remove(item?: any | null): boolean
987
+ clear(): void
988
+ to_array(): any[]
989
+ add_all(collection: Collection): boolean
990
+ contains_all(collection: Collection): boolean
991
+ remove_all(collection: Collection): boolean
992
+ retain_all(collection: Collection): boolean
993
+ iterator(): Iterator
994
+
995
+ // Own virtual methods of Gee-1.0.Gee.AbstractCollection
996
+
997
+ vfunc_contains(item?: any | null): boolean
998
+ vfunc_add(item?: any | null): boolean
999
+ vfunc_remove(item?: any | null): boolean
1000
+ vfunc_clear(): void
1001
+ vfunc_to_array(): any[]
1002
+ vfunc_add_all(collection: Collection): boolean
1003
+ vfunc_contains_all(collection: Collection): boolean
1004
+ vfunc_remove_all(collection: Collection): boolean
1005
+ vfunc_retain_all(collection: Collection): boolean
1006
+ vfunc_iterator(): Iterator
1007
+
1008
+ // Class property signals of Gee-1.0.Gee.AbstractCollection
1009
+
1010
+ connect(sigName: "notify::size", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1011
+ connect_after(sigName: "notify::size", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1012
+ emit(sigName: "notify::size", ...args: any[]): void
1013
+ connect(sigName: "notify::is-empty", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1014
+ connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1015
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1016
+ connect(sigName: "notify::read-only-view", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1017
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1018
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1019
+ connect(sigName: "notify::element-type", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1020
+ connect_after(sigName: "notify::element-type", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
1021
+ emit(sigName: "notify::element-type", ...args: any[]): void
1022
+ connect(sigName: string, callback: (...args: any[]) => void): number
1023
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1024
+ emit(sigName: string, ...args: any[]): void
1025
+ disconnect(id: number): void
1026
+ }
1027
+
1028
+ class AbstractCollection extends GObject.Object {
1029
+
1030
+ // Own properties of Gee-1.0.Gee.AbstractCollection
1031
+
1032
+ static name: string
1033
+ static $gtype: GObject.GType<AbstractCollection>
1034
+
1035
+ // Constructors of Gee-1.0.Gee.AbstractCollection
1036
+
1037
+ constructor(config?: AbstractCollection.ConstructorProperties)
1038
+ _init(config?: AbstractCollection.ConstructorProperties): void
1039
+ }
1040
+
1041
+ module AbstractList {
1042
+
1043
+ // Constructor properties interface
1044
+
1045
+ interface ConstructorProperties extends List.ConstructorProperties, AbstractCollection.ConstructorProperties {
1046
+ }
1047
+
1048
+ }
1049
+
1050
+ interface AbstractList extends List {
1051
+
1052
+ // Own properties of Gee-1.0.Gee.AbstractList
1053
+
1054
+ readonly read_only_view: any
1055
+
1056
+ // Own fields of Gee-1.0.Gee.AbstractList
1057
+
1058
+ parent_instance: AbstractCollection & GObject.Object
1059
+ priv: any
1060
+
1061
+ // Owm methods of Gee-1.0.Gee.AbstractList
1062
+
1063
+ list_iterator(): ListIterator
1064
+ get(index: number): any | null
1065
+ set(index: number, item?: any | null): void
1066
+ index_of(item?: any | null): number
1067
+ insert(index: number, item?: any | null): void
1068
+ remove_at(index: number): any | null
1069
+ slice(start: number, stop: number): List | null
1070
+ first(): any | null
1071
+ last(): any | null
1072
+ insert_all(index: number, collection: Collection): void
1073
+
1074
+ // Own virtual methods of Gee-1.0.Gee.AbstractList
1075
+
1076
+ vfunc_list_iterator(): ListIterator
1077
+ vfunc_get(index: number): any | null
1078
+ vfunc_set(index: number, item?: any | null): void
1079
+ vfunc_index_of(item?: any | null): number
1080
+ vfunc_insert(index: number, item?: any | null): void
1081
+ vfunc_remove_at(index: number): any | null
1082
+ vfunc_slice(start: number, stop: number): List | null
1083
+ vfunc_first(): any | null
1084
+ vfunc_last(): any | null
1085
+ vfunc_insert_all(index: number, collection: Collection): void
1086
+
1087
+ // Class property signals of Gee-1.0.Gee.AbstractList
1088
+
1089
+ connect(sigName: "notify::read-only-view", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1090
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1091
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1092
+ connect(sigName: "notify::size", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1093
+ connect_after(sigName: "notify::size", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1094
+ emit(sigName: "notify::size", ...args: any[]): void
1095
+ connect(sigName: "notify::is-empty", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1096
+ connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1097
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1098
+ connect(sigName: "notify::element-type", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1099
+ connect_after(sigName: "notify::element-type", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
1100
+ emit(sigName: "notify::element-type", ...args: any[]): void
1101
+ connect(sigName: string, callback: (...args: any[]) => void): number
1102
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1103
+ emit(sigName: string, ...args: any[]): void
1104
+ disconnect(id: number): void
1105
+ }
1106
+
1107
+ class AbstractList extends AbstractCollection {
1108
+
1109
+ // Own properties of Gee-1.0.Gee.AbstractList
1110
+
1111
+ static name: string
1112
+ static $gtype: GObject.GType<AbstractList>
1113
+
1114
+ // Constructors of Gee-1.0.Gee.AbstractList
1115
+
1116
+ constructor(config?: AbstractList.ConstructorProperties)
1117
+ _init(config?: AbstractList.ConstructorProperties): void
1118
+
1119
+ // Conflicting static methods
1120
+
1121
+ static empty(): List
1122
+
1123
+ // Overloads of empty
1124
+
1125
+ static empty(): Collection
1126
+ static empty(): Collection
1127
+ }
1128
+
1129
+ module AbstractMap {
1130
+
1131
+ // Constructor properties interface
1132
+
1133
+ interface ConstructorProperties extends Iterable.ConstructorProperties, Map.ConstructorProperties, GObject.Object.ConstructorProperties {
1134
+ }
1135
+
1136
+ }
1137
+
1138
+ interface AbstractMap extends Iterable, Map {
1139
+
1140
+ // Own properties of Gee-1.0.Gee.AbstractMap
1141
+
1142
+ readonly size: number
1143
+ readonly is_empty: boolean
1144
+ readonly keys: Set
1145
+ readonly values: Collection
1146
+ readonly entries: Set
1147
+ readonly read_only_view: Map
1148
+
1149
+ // Own fields of Gee-1.0.Gee.AbstractMap
1150
+
1151
+ parent_instance: GObject.Object
1152
+ priv: AbstractMapPrivate
1153
+
1154
+ // Owm methods of Gee-1.0.Gee.AbstractMap
1155
+
1156
+ has_key(key?: any | null): boolean
1157
+ has(key?: any | null, value?: any | null): boolean
1158
+ get(key?: any | null): any | null
1159
+ set(key?: any | null, value?: any | null): void
1160
+ unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
1161
+ map_iterator(): MapIterator
1162
+ clear(): void
1163
+ set_all(map: Map): void
1164
+ unset_all(map: Map): boolean
1165
+ has_all(map: Map): boolean
1166
+
1167
+ // Own virtual methods of Gee-1.0.Gee.AbstractMap
1168
+
1169
+ vfunc_has_key(key?: any | null): boolean
1170
+ vfunc_has(key?: any | null, value?: any | null): boolean
1171
+ vfunc_get(key?: any | null): any | null
1172
+ vfunc_set(key?: any | null, value?: any | null): void
1173
+ vfunc_unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
1174
+ vfunc_map_iterator(): MapIterator
1175
+ vfunc_clear(): void
1176
+ vfunc_set_all(map: Map): void
1177
+ vfunc_unset_all(map: Map): boolean
1178
+ vfunc_has_all(map: Map): boolean
1179
+
1180
+ // Class property signals of Gee-1.0.Gee.AbstractMap
1181
+
1182
+ connect(sigName: "notify::size", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1183
+ connect_after(sigName: "notify::size", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1184
+ emit(sigName: "notify::size", ...args: any[]): void
1185
+ connect(sigName: "notify::is-empty", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1186
+ connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1187
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1188
+ connect(sigName: "notify::keys", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1189
+ connect_after(sigName: "notify::keys", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1190
+ emit(sigName: "notify::keys", ...args: any[]): void
1191
+ connect(sigName: "notify::values", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1192
+ connect_after(sigName: "notify::values", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1193
+ emit(sigName: "notify::values", ...args: any[]): void
1194
+ connect(sigName: "notify::entries", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1195
+ connect_after(sigName: "notify::entries", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1196
+ emit(sigName: "notify::entries", ...args: any[]): void
1197
+ connect(sigName: "notify::read-only-view", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1198
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1199
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1200
+ connect(sigName: "notify::element-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1201
+ connect_after(sigName: "notify::element-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1202
+ emit(sigName: "notify::element-type", ...args: any[]): void
1203
+ connect(sigName: "notify::key-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1204
+ connect_after(sigName: "notify::key-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1205
+ emit(sigName: "notify::key-type", ...args: any[]): void
1206
+ connect(sigName: "notify::value-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1207
+ connect_after(sigName: "notify::value-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
1208
+ emit(sigName: "notify::value-type", ...args: any[]): void
1209
+ connect(sigName: string, callback: (...args: any[]) => void): number
1210
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1211
+ emit(sigName: string, ...args: any[]): void
1212
+ disconnect(id: number): void
1213
+ }
1214
+
1215
+ class AbstractMap extends GObject.Object {
1216
+
1217
+ // Own properties of Gee-1.0.Gee.AbstractMap
1218
+
1219
+ static name: string
1220
+ static $gtype: GObject.GType<AbstractMap>
1221
+
1222
+ // Constructors of Gee-1.0.Gee.AbstractMap
1223
+
1224
+ constructor(config?: AbstractMap.ConstructorProperties)
1225
+ _init(config?: AbstractMap.ConstructorProperties): void
1226
+ }
1227
+
1228
+ module AbstractMultiMap {
1229
+
1230
+ // Constructor properties interface
1231
+
1232
+ interface ConstructorProperties extends MultiMap.ConstructorProperties, GObject.Object.ConstructorProperties {
1233
+ }
1234
+
1235
+ }
1236
+
1237
+ interface AbstractMultiMap extends MultiMap {
1238
+
1239
+ // Own fields of Gee-1.0.Gee.AbstractMultiMap
1240
+
1241
+ parent_instance: GObject.Object
1242
+ priv: AbstractMultiMapPrivate
1243
+ _storage_map: Map
1244
+
1245
+ // Owm methods of Gee-1.0.Gee.AbstractMultiMap
1246
+
1247
+ create_value_storage(): Collection
1248
+ create_multi_key_set(): MultiSet
1249
+ get_value_equal_func(): GLib.EqualFunc
1250
+
1251
+ // Own virtual methods of Gee-1.0.Gee.AbstractMultiMap
1252
+
1253
+ vfunc_create_value_storage(): Collection
1254
+ vfunc_create_multi_key_set(): MultiSet
1255
+ vfunc_get_value_equal_func(): GLib.EqualFunc
1256
+
1257
+ // Class property signals of Gee-1.0.Gee.AbstractMultiMap
1258
+
1259
+ connect(sigName: "notify::size", callback: (($obj: AbstractMultiMap, pspec: GObject.ParamSpec) => void)): number
1260
+ connect_after(sigName: "notify::size", callback: (($obj: AbstractMultiMap, pspec: GObject.ParamSpec) => void)): number
1261
+ emit(sigName: "notify::size", ...args: any[]): void
1262
+ connect(sigName: string, callback: (...args: any[]) => void): number
1263
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1264
+ emit(sigName: string, ...args: any[]): void
1265
+ disconnect(id: number): void
1266
+ }
1267
+
1268
+ class AbstractMultiMap extends GObject.Object {
1269
+
1270
+ // Own properties of Gee-1.0.Gee.AbstractMultiMap
1271
+
1272
+ static name: string
1273
+ static $gtype: GObject.GType<AbstractMultiMap>
1274
+
1275
+ // Constructors of Gee-1.0.Gee.AbstractMultiMap
1276
+
1277
+ constructor(config?: AbstractMultiMap.ConstructorProperties)
1278
+ _init(config?: AbstractMultiMap.ConstructorProperties): void
1279
+ }
1280
+
1281
+ module AbstractMultiSet {
1282
+
1283
+ // Constructor properties interface
1284
+
1285
+ interface ConstructorProperties extends MultiSet.ConstructorProperties, AbstractCollection.ConstructorProperties {
1286
+ }
1287
+
1288
+ }
1289
+
1290
+ interface AbstractMultiSet extends MultiSet {
1291
+
1292
+ // Own fields of Gee-1.0.Gee.AbstractMultiSet
1293
+
1294
+ parent_instance: AbstractCollection & GObject.Object
1295
+ priv: any
1296
+ _storage_map: Map
1297
+
1298
+ // Class property signals of Gee-1.0.Gee.AbstractMultiSet
1299
+
1300
+ connect(sigName: "notify::size", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1301
+ connect_after(sigName: "notify::size", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1302
+ emit(sigName: "notify::size", ...args: any[]): void
1303
+ connect(sigName: "notify::is-empty", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1304
+ connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1305
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1306
+ connect(sigName: "notify::read-only-view", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1307
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1308
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1309
+ connect(sigName: "notify::element-type", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1310
+ connect_after(sigName: "notify::element-type", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
1311
+ emit(sigName: "notify::element-type", ...args: any[]): void
1312
+ connect(sigName: string, callback: (...args: any[]) => void): number
1313
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1314
+ emit(sigName: string, ...args: any[]): void
1315
+ disconnect(id: number): void
1316
+ }
1317
+
1318
+ class AbstractMultiSet extends AbstractCollection {
1319
+
1320
+ // Own properties of Gee-1.0.Gee.AbstractMultiSet
1321
+
1322
+ static name: string
1323
+ static $gtype: GObject.GType<AbstractMultiSet>
1324
+
1325
+ // Constructors of Gee-1.0.Gee.AbstractMultiSet
1326
+
1327
+ constructor(config?: AbstractMultiSet.ConstructorProperties)
1328
+ _init(config?: AbstractMultiSet.ConstructorProperties): void
1329
+ }
1330
+
1331
+ module AbstractQueue {
1332
+
1333
+ // Constructor properties interface
1334
+
1335
+ interface ConstructorProperties extends Queue.ConstructorProperties, AbstractCollection.ConstructorProperties {
1336
+ }
1337
+
1338
+ }
1339
+
1340
+ interface AbstractQueue extends Queue {
1341
+
1342
+ // Own properties of Gee-1.0.Gee.AbstractQueue
1343
+
1344
+ readonly capacity: number
1345
+ readonly remaining_capacity: number
1346
+ readonly is_full: boolean
1347
+
1348
+ // Own fields of Gee-1.0.Gee.AbstractQueue
1349
+
1350
+ parent_instance: AbstractCollection & GObject.Object
1351
+ priv: any
1352
+
1353
+ // Owm methods of Gee-1.0.Gee.AbstractQueue
1354
+
1355
+ offer(element?: any | null): boolean
1356
+ peek(): any | null
1357
+ poll(): any | null
1358
+ drain(recipient: Collection, amount: number): number
1359
+
1360
+ // Own virtual methods of Gee-1.0.Gee.AbstractQueue
1361
+
1362
+ vfunc_offer(element?: any | null): boolean
1363
+ vfunc_peek(): any | null
1364
+ vfunc_poll(): any | null
1365
+ vfunc_drain(recipient: Collection, amount: number): number
1366
+
1367
+ // Class property signals of Gee-1.0.Gee.AbstractQueue
1368
+
1369
+ connect(sigName: "notify::capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1370
+ connect_after(sigName: "notify::capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1371
+ emit(sigName: "notify::capacity", ...args: any[]): void
1372
+ connect(sigName: "notify::remaining-capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1373
+ connect_after(sigName: "notify::remaining-capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1374
+ emit(sigName: "notify::remaining-capacity", ...args: any[]): void
1375
+ connect(sigName: "notify::is-full", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1376
+ connect_after(sigName: "notify::is-full", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1377
+ emit(sigName: "notify::is-full", ...args: any[]): void
1378
+ connect(sigName: "notify::size", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1379
+ connect_after(sigName: "notify::size", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1380
+ emit(sigName: "notify::size", ...args: any[]): void
1381
+ connect(sigName: "notify::is-empty", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1382
+ connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1383
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1384
+ connect(sigName: "notify::read-only-view", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1385
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1386
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1387
+ connect(sigName: "notify::element-type", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1388
+ connect_after(sigName: "notify::element-type", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
1389
+ emit(sigName: "notify::element-type", ...args: any[]): void
1390
+ connect(sigName: string, callback: (...args: any[]) => void): number
1391
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1392
+ emit(sigName: string, ...args: any[]): void
1393
+ disconnect(id: number): void
1394
+ }
1395
+
1396
+ class AbstractQueue extends AbstractCollection {
1397
+
1398
+ // Own properties of Gee-1.0.Gee.AbstractQueue
1399
+
1400
+ static name: string
1401
+ static $gtype: GObject.GType<AbstractQueue>
1402
+
1403
+ // Constructors of Gee-1.0.Gee.AbstractQueue
1404
+
1405
+ constructor(config?: AbstractQueue.ConstructorProperties)
1406
+ _init(config?: AbstractQueue.ConstructorProperties): void
1407
+ }
1408
+
1409
+ module AbstractSet {
1410
+
1411
+ // Constructor properties interface
1412
+
1413
+ interface ConstructorProperties extends Set.ConstructorProperties, AbstractCollection.ConstructorProperties {
1414
+ }
1415
+
1416
+ }
1417
+
1418
+ interface AbstractSet extends Set {
1419
+
1420
+ // Own properties of Gee-1.0.Gee.AbstractSet
1421
+
1422
+ readonly read_only_view: any
1423
+
1424
+ // Own fields of Gee-1.0.Gee.AbstractSet
1425
+
1426
+ parent_instance: AbstractCollection & GObject.Object
1427
+ priv: any
1428
+
1429
+ // Class property signals of Gee-1.0.Gee.AbstractSet
1430
+
1431
+ connect(sigName: "notify::read-only-view", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1432
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1433
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1434
+ connect(sigName: "notify::size", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1435
+ connect_after(sigName: "notify::size", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1436
+ emit(sigName: "notify::size", ...args: any[]): void
1437
+ connect(sigName: "notify::is-empty", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1438
+ connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1439
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1440
+ connect(sigName: "notify::element-type", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1441
+ connect_after(sigName: "notify::element-type", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
1442
+ emit(sigName: "notify::element-type", ...args: any[]): void
1443
+ connect(sigName: string, callback: (...args: any[]) => void): number
1444
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1445
+ emit(sigName: string, ...args: any[]): void
1446
+ disconnect(id: number): void
1447
+ }
1448
+
1449
+ class AbstractSet extends AbstractCollection {
1450
+
1451
+ // Own properties of Gee-1.0.Gee.AbstractSet
1452
+
1453
+ static name: string
1454
+ static $gtype: GObject.GType<AbstractSet>
1455
+
1456
+ // Constructors of Gee-1.0.Gee.AbstractSet
1457
+
1458
+ constructor(config?: AbstractSet.ConstructorProperties)
1459
+ _init(config?: AbstractSet.ConstructorProperties): void
1460
+
1461
+ // Conflicting static methods
1462
+
1463
+ static empty(): Set
1464
+
1465
+ // Overloads of empty
1466
+
1467
+ static empty(): Collection
1468
+ static empty(): Collection
1469
+ }
1470
+
1471
+ module ArrayList {
1472
+
1473
+ // Constructor properties interface
1474
+
1475
+ interface ConstructorProperties extends AbstractList.ConstructorProperties {
1476
+
1477
+ // Own constructor properties of Gee-1.0.Gee.ArrayList
1478
+
1479
+ equal_func?: GLib.EqualFunc | null
1480
+ }
1481
+
1482
+ }
1483
+
1484
+ interface ArrayList {
1485
+
1486
+ // Own properties of Gee-1.0.Gee.ArrayList
1487
+
1488
+ equal_func: GLib.EqualFunc
1489
+
1490
+ // Conflicting properties
1491
+
1492
+ read_only_view: any
1493
+
1494
+ // Own fields of Gee-1.0.Gee.ArrayList
1495
+
1496
+ parent_instance: AbstractList & AbstractCollection & GObject.Object & GObject.Object
1497
+ priv: any
1498
+
1499
+ // Owm methods of Gee-1.0.Gee.ArrayList
1500
+
1501
+ sort_with_data(compare: GLib.CompareDataFunc): void
1502
+
1503
+ // Class property signals of Gee-1.0.Gee.ArrayList
1504
+
1505
+ connect(sigName: "notify::equal-func", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1506
+ connect_after(sigName: "notify::equal-func", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1507
+ emit(sigName: "notify::equal-func", ...args: any[]): void
1508
+ connect(sigName: "notify::read-only-view", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1509
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1510
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1511
+ connect(sigName: "notify::size", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1512
+ connect_after(sigName: "notify::size", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1513
+ emit(sigName: "notify::size", ...args: any[]): void
1514
+ connect(sigName: "notify::is-empty", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1515
+ connect_after(sigName: "notify::is-empty", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
1516
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1517
+ connect(sigName: string, callback: (...args: any[]) => void): number
1518
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1519
+ emit(sigName: string, ...args: any[]): void
1520
+ disconnect(id: number): void
1521
+ }
1522
+
1523
+ class ArrayList extends AbstractList {
1524
+
1525
+ // Own properties of Gee-1.0.Gee.ArrayList
1526
+
1527
+ static name: string
1528
+ static $gtype: GObject.GType<ArrayList>
1529
+
1530
+ // Constructors of Gee-1.0.Gee.ArrayList
1531
+
1532
+ constructor(config?: ArrayList.ConstructorProperties)
1533
+ constructor(equal_func?: GLib.EqualFunc | null)
1534
+ static new(equal_func?: GLib.EqualFunc | null): ArrayList
1535
+ _init(config?: ArrayList.ConstructorProperties): void
1536
+
1537
+ // Conflicting static methods
1538
+
1539
+ static empty(): List
1540
+
1541
+ // Overloads of empty
1542
+
1543
+ static empty(): Collection
1544
+ static empty(): Collection
1545
+ }
1546
+
1547
+ module HashMap {
1548
+
1549
+ // Constructor properties interface
1550
+
1551
+ interface ConstructorProperties extends AbstractMap.ConstructorProperties {
1552
+
1553
+ // Own constructor properties of Gee-1.0.Gee.HashMap
1554
+
1555
+ key_hash_func?: GLib.HashFunc | null
1556
+ key_equal_func?: GLib.EqualFunc | null
1557
+ value_equal_func?: GLib.EqualFunc | null
1558
+ }
1559
+
1560
+ }
1561
+
1562
+ interface HashMap {
1563
+
1564
+ // Own properties of Gee-1.0.Gee.HashMap
1565
+
1566
+ key_hash_func: GLib.HashFunc
1567
+ key_equal_func: GLib.EqualFunc
1568
+ value_equal_func: GLib.EqualFunc
1569
+
1570
+ // Own fields of Gee-1.0.Gee.HashMap
1571
+
1572
+ parent_instance: AbstractMap & GObject.Object
1573
+ priv: any
1574
+
1575
+ // Class property signals of Gee-1.0.Gee.HashMap
1576
+
1577
+ connect(sigName: "notify::key-hash-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1578
+ connect_after(sigName: "notify::key-hash-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1579
+ emit(sigName: "notify::key-hash-func", ...args: any[]): void
1580
+ connect(sigName: "notify::key-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1581
+ connect_after(sigName: "notify::key-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1582
+ emit(sigName: "notify::key-equal-func", ...args: any[]): void
1583
+ connect(sigName: "notify::value-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1584
+ connect_after(sigName: "notify::value-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1585
+ emit(sigName: "notify::value-equal-func", ...args: any[]): void
1586
+ connect(sigName: "notify::size", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1587
+ connect_after(sigName: "notify::size", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1588
+ emit(sigName: "notify::size", ...args: any[]): void
1589
+ connect(sigName: "notify::is-empty", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1590
+ connect_after(sigName: "notify::is-empty", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1591
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1592
+ connect(sigName: "notify::keys", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1593
+ connect_after(sigName: "notify::keys", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1594
+ emit(sigName: "notify::keys", ...args: any[]): void
1595
+ connect(sigName: "notify::values", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1596
+ connect_after(sigName: "notify::values", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1597
+ emit(sigName: "notify::values", ...args: any[]): void
1598
+ connect(sigName: "notify::entries", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1599
+ connect_after(sigName: "notify::entries", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1600
+ emit(sigName: "notify::entries", ...args: any[]): void
1601
+ connect(sigName: "notify::read-only-view", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1602
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
1603
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1604
+ connect(sigName: string, callback: (...args: any[]) => void): number
1605
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1606
+ emit(sigName: string, ...args: any[]): void
1607
+ disconnect(id: number): void
1608
+ }
1609
+
1610
+ class HashMap extends AbstractMap {
1611
+
1612
+ // Own properties of Gee-1.0.Gee.HashMap
1613
+
1614
+ static name: string
1615
+ static $gtype: GObject.GType<HashMap>
1616
+
1617
+ // Constructors of Gee-1.0.Gee.HashMap
1618
+
1619
+ constructor(config?: HashMap.ConstructorProperties)
1620
+ constructor(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_equal_func?: GLib.EqualFunc | null)
1621
+ static new(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_equal_func?: GLib.EqualFunc | null): HashMap
1622
+ _init(config?: HashMap.ConstructorProperties): void
1623
+ }
1624
+
1625
+ module HashMultiMap {
1626
+
1627
+ // Constructor properties interface
1628
+
1629
+ interface ConstructorProperties extends AbstractMultiMap.ConstructorProperties {
1630
+
1631
+ // Own constructor properties of Gee-1.0.Gee.HashMultiMap
1632
+
1633
+ value_hash_func?: GLib.HashFunc | null
1634
+ value_equal_func?: GLib.EqualFunc | null
1635
+ }
1636
+
1637
+ }
1638
+
1639
+ interface HashMultiMap {
1640
+
1641
+ // Own properties of Gee-1.0.Gee.HashMultiMap
1642
+
1643
+ readonly key_hash_func: GLib.HashFunc
1644
+ readonly key_equal_func: GLib.EqualFunc
1645
+ value_hash_func: GLib.HashFunc
1646
+ value_equal_func: GLib.EqualFunc
1647
+
1648
+ // Own fields of Gee-1.0.Gee.HashMultiMap
1649
+
1650
+ parent_instance: AbstractMultiMap & GObject.Object
1651
+ priv: any
1652
+
1653
+ // Class property signals of Gee-1.0.Gee.HashMultiMap
1654
+
1655
+ connect(sigName: "notify::key-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1656
+ connect_after(sigName: "notify::key-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1657
+ emit(sigName: "notify::key-hash-func", ...args: any[]): void
1658
+ connect(sigName: "notify::key-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1659
+ connect_after(sigName: "notify::key-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1660
+ emit(sigName: "notify::key-equal-func", ...args: any[]): void
1661
+ connect(sigName: "notify::value-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1662
+ connect_after(sigName: "notify::value-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1663
+ emit(sigName: "notify::value-hash-func", ...args: any[]): void
1664
+ connect(sigName: "notify::value-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1665
+ connect_after(sigName: "notify::value-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
1666
+ emit(sigName: "notify::value-equal-func", ...args: any[]): void
1667
+ connect(sigName: string, callback: (...args: any[]) => void): number
1668
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1669
+ emit(sigName: string, ...args: any[]): void
1670
+ disconnect(id: number): void
1671
+ }
1672
+
1673
+ class HashMultiMap extends AbstractMultiMap {
1674
+
1675
+ // Own properties of Gee-1.0.Gee.HashMultiMap
1676
+
1677
+ static name: string
1678
+ static $gtype: GObject.GType<HashMultiMap>
1679
+
1680
+ // Constructors of Gee-1.0.Gee.HashMultiMap
1681
+
1682
+ constructor(config?: HashMultiMap.ConstructorProperties)
1683
+ constructor(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_hash_func?: GLib.HashFunc | null, value_equal_func?: GLib.EqualFunc | null)
1684
+ static new(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_hash_func?: GLib.HashFunc | null, value_equal_func?: GLib.EqualFunc | null): HashMultiMap
1685
+ _init(config?: HashMultiMap.ConstructorProperties): void
1686
+ }
1687
+
1688
+ module HashMultiSet {
1689
+
1690
+ // Constructor properties interface
1691
+
1692
+ interface ConstructorProperties extends AbstractMultiSet.ConstructorProperties {
1693
+ }
1694
+
1695
+ }
1696
+
1697
+ interface HashMultiSet {
1698
+
1699
+ // Own properties of Gee-1.0.Gee.HashMultiSet
1700
+
1701
+ readonly hash_func: GLib.HashFunc
1702
+ readonly equal_func: GLib.EqualFunc
1703
+
1704
+ // Own fields of Gee-1.0.Gee.HashMultiSet
1705
+
1706
+ parent_instance: AbstractMultiSet & AbstractCollection & GObject.Object & GObject.Object
1707
+ priv: any
1708
+
1709
+ // Class property signals of Gee-1.0.Gee.HashMultiSet
1710
+
1711
+ connect(sigName: "notify::hash-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1712
+ connect_after(sigName: "notify::hash-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1713
+ emit(sigName: "notify::hash-func", ...args: any[]): void
1714
+ connect(sigName: "notify::equal-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1715
+ connect_after(sigName: "notify::equal-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1716
+ emit(sigName: "notify::equal-func", ...args: any[]): void
1717
+ connect(sigName: "notify::size", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1718
+ connect_after(sigName: "notify::size", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1719
+ emit(sigName: "notify::size", ...args: any[]): void
1720
+ connect(sigName: "notify::is-empty", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1721
+ connect_after(sigName: "notify::is-empty", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1722
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1723
+ connect(sigName: "notify::read-only-view", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1724
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
1725
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1726
+ connect(sigName: string, callback: (...args: any[]) => void): number
1727
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1728
+ emit(sigName: string, ...args: any[]): void
1729
+ disconnect(id: number): void
1730
+ }
1731
+
1732
+ class HashMultiSet extends AbstractMultiSet {
1733
+
1734
+ // Own properties of Gee-1.0.Gee.HashMultiSet
1735
+
1736
+ static name: string
1737
+ static $gtype: GObject.GType<HashMultiSet>
1738
+
1739
+ // Constructors of Gee-1.0.Gee.HashMultiSet
1740
+
1741
+ constructor(config?: HashMultiSet.ConstructorProperties)
1742
+ constructor(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null)
1743
+ static new(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null): HashMultiSet
1744
+ _init(config?: HashMultiSet.ConstructorProperties): void
1745
+ }
1746
+
1747
+ module HashSet {
1748
+
1749
+ // Constructor properties interface
1750
+
1751
+ interface ConstructorProperties extends AbstractSet.ConstructorProperties {
1752
+
1753
+ // Own constructor properties of Gee-1.0.Gee.HashSet
1754
+
1755
+ hash_func?: GLib.HashFunc | null
1756
+ equal_func?: GLib.EqualFunc | null
1757
+ }
1758
+
1759
+ }
1760
+
1761
+ interface HashSet {
1762
+
1763
+ // Own properties of Gee-1.0.Gee.HashSet
1764
+
1765
+ hash_func: GLib.HashFunc
1766
+ equal_func: GLib.EqualFunc
1767
+
1768
+ // Conflicting properties
1769
+
1770
+ read_only_view: any
1771
+
1772
+ // Own fields of Gee-1.0.Gee.HashSet
1773
+
1774
+ parent_instance: AbstractSet & AbstractCollection & GObject.Object & GObject.Object
1775
+ priv: any
1776
+
1777
+ // Class property signals of Gee-1.0.Gee.HashSet
1778
+
1779
+ connect(sigName: "notify::hash-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1780
+ connect_after(sigName: "notify::hash-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1781
+ emit(sigName: "notify::hash-func", ...args: any[]): void
1782
+ connect(sigName: "notify::equal-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1783
+ connect_after(sigName: "notify::equal-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1784
+ emit(sigName: "notify::equal-func", ...args: any[]): void
1785
+ connect(sigName: "notify::read-only-view", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1786
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1787
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1788
+ connect(sigName: "notify::size", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1789
+ connect_after(sigName: "notify::size", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1790
+ emit(sigName: "notify::size", ...args: any[]): void
1791
+ connect(sigName: "notify::is-empty", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1792
+ connect_after(sigName: "notify::is-empty", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
1793
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1794
+ connect(sigName: string, callback: (...args: any[]) => void): number
1795
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1796
+ emit(sigName: string, ...args: any[]): void
1797
+ disconnect(id: number): void
1798
+ }
1799
+
1800
+ class HashSet extends AbstractSet {
1801
+
1802
+ // Own properties of Gee-1.0.Gee.HashSet
1803
+
1804
+ static name: string
1805
+ static $gtype: GObject.GType<HashSet>
1806
+
1807
+ // Constructors of Gee-1.0.Gee.HashSet
1808
+
1809
+ constructor(config?: HashSet.ConstructorProperties)
1810
+ constructor(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null)
1811
+ static new(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null): HashSet
1812
+ _init(config?: HashSet.ConstructorProperties): void
1813
+
1814
+ // Conflicting static methods
1815
+
1816
+ static empty(): Set
1817
+
1818
+ // Overloads of empty
1819
+
1820
+ static empty(): Collection
1821
+ static empty(): Collection
1822
+ }
1823
+
1824
+ module LinkedList {
1825
+
1826
+ // Constructor properties interface
1827
+
1828
+ interface ConstructorProperties extends Queue.ConstructorProperties, Deque.ConstructorProperties, AbstractList.ConstructorProperties {
1829
+
1830
+ // Own constructor properties of Gee-1.0.Gee.LinkedList
1831
+
1832
+ equal_func?: GLib.EqualFunc | null
1833
+ }
1834
+
1835
+ }
1836
+
1837
+ interface LinkedList extends Queue, Deque {
1838
+
1839
+ // Own properties of Gee-1.0.Gee.LinkedList
1840
+
1841
+ equal_func: GLib.EqualFunc
1842
+
1843
+ // Conflicting properties
1844
+
1845
+ read_only_view: any
1846
+
1847
+ // Own fields of Gee-1.0.Gee.LinkedList
1848
+
1849
+ parent_instance: AbstractList & AbstractCollection & GObject.Object & GObject.Object
1850
+ priv: any
1851
+
1852
+ // Class property signals of Gee-1.0.Gee.LinkedList
1853
+
1854
+ connect(sigName: "notify::equal-func", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1855
+ connect_after(sigName: "notify::equal-func", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1856
+ emit(sigName: "notify::equal-func", ...args: any[]): void
1857
+ connect(sigName: "notify::read-only-view", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1858
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1859
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1860
+ connect(sigName: "notify::size", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1861
+ connect_after(sigName: "notify::size", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1862
+ emit(sigName: "notify::size", ...args: any[]): void
1863
+ connect(sigName: "notify::is-empty", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1864
+ connect_after(sigName: "notify::is-empty", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1865
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1866
+ connect(sigName: "notify::capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1867
+ connect_after(sigName: "notify::capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1868
+ emit(sigName: "notify::capacity", ...args: any[]): void
1869
+ connect(sigName: "notify::remaining-capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1870
+ connect_after(sigName: "notify::remaining-capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1871
+ emit(sigName: "notify::remaining-capacity", ...args: any[]): void
1872
+ connect(sigName: "notify::is-full", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1873
+ connect_after(sigName: "notify::is-full", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1874
+ emit(sigName: "notify::is-full", ...args: any[]): void
1875
+ connect(sigName: "notify::element-type", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1876
+ connect_after(sigName: "notify::element-type", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
1877
+ emit(sigName: "notify::element-type", ...args: any[]): void
1878
+ connect(sigName: string, callback: (...args: any[]) => void): number
1879
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1880
+ emit(sigName: string, ...args: any[]): void
1881
+ disconnect(id: number): void
1882
+ }
1883
+
1884
+ class LinkedList extends AbstractList {
1885
+
1886
+ // Own properties of Gee-1.0.Gee.LinkedList
1887
+
1888
+ static name: string
1889
+ static $gtype: GObject.GType<LinkedList>
1890
+
1891
+ // Constructors of Gee-1.0.Gee.LinkedList
1892
+
1893
+ constructor(config?: LinkedList.ConstructorProperties)
1894
+ constructor(equal_func?: GLib.EqualFunc | null)
1895
+ static new(equal_func?: GLib.EqualFunc | null): LinkedList
1896
+ _init(config?: LinkedList.ConstructorProperties): void
1897
+
1898
+ // Conflicting static methods
1899
+
1900
+ static empty(): Collection
1901
+ static empty(): List
1902
+
1903
+ // Overloads of empty
1904
+
1905
+ static empty(): Collection
1906
+ }
1907
+
1908
+ module PriorityQueue {
1909
+
1910
+ // Constructor properties interface
1911
+
1912
+ interface ConstructorProperties extends AbstractQueue.ConstructorProperties {
1913
+
1914
+ // Own constructor properties of Gee-1.0.Gee.PriorityQueue
1915
+
1916
+ compare_func?: GLib.CompareFunc | null
1917
+ }
1918
+
1919
+ }
1920
+
1921
+ interface PriorityQueue {
1922
+
1923
+ // Own properties of Gee-1.0.Gee.PriorityQueue
1924
+
1925
+ compare_func: GLib.CompareFunc
1926
+
1927
+ // Own fields of Gee-1.0.Gee.PriorityQueue
1928
+
1929
+ parent_instance: AbstractQueue & AbstractCollection & GObject.Object & GObject.Object
1930
+ priv: any
1931
+
1932
+ // Class property signals of Gee-1.0.Gee.PriorityQueue
1933
+
1934
+ connect(sigName: "notify::compare-func", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1935
+ connect_after(sigName: "notify::compare-func", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1936
+ emit(sigName: "notify::compare-func", ...args: any[]): void
1937
+ connect(sigName: "notify::capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1938
+ connect_after(sigName: "notify::capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1939
+ emit(sigName: "notify::capacity", ...args: any[]): void
1940
+ connect(sigName: "notify::remaining-capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1941
+ connect_after(sigName: "notify::remaining-capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1942
+ emit(sigName: "notify::remaining-capacity", ...args: any[]): void
1943
+ connect(sigName: "notify::is-full", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1944
+ connect_after(sigName: "notify::is-full", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1945
+ emit(sigName: "notify::is-full", ...args: any[]): void
1946
+ connect(sigName: "notify::size", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1947
+ connect_after(sigName: "notify::size", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1948
+ emit(sigName: "notify::size", ...args: any[]): void
1949
+ connect(sigName: "notify::is-empty", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1950
+ connect_after(sigName: "notify::is-empty", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1951
+ emit(sigName: "notify::is-empty", ...args: any[]): void
1952
+ connect(sigName: "notify::read-only-view", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1953
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
1954
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
1955
+ connect(sigName: string, callback: (...args: any[]) => void): number
1956
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1957
+ emit(sigName: string, ...args: any[]): void
1958
+ disconnect(id: number): void
1959
+ }
1960
+
1961
+ class PriorityQueue extends AbstractQueue {
1962
+
1963
+ // Own properties of Gee-1.0.Gee.PriorityQueue
1964
+
1965
+ static name: string
1966
+ static $gtype: GObject.GType<PriorityQueue>
1967
+
1968
+ // Constructors of Gee-1.0.Gee.PriorityQueue
1969
+
1970
+ constructor(config?: PriorityQueue.ConstructorProperties)
1971
+ constructor(compare_func?: GLib.CompareFunc | null)
1972
+ static new(compare_func?: GLib.CompareFunc | null): PriorityQueue
1973
+ _init(config?: PriorityQueue.ConstructorProperties): void
1974
+ }
1975
+
1976
+ module TreeMap {
1977
+
1978
+ // Constructor properties interface
1979
+
1980
+ interface ConstructorProperties extends AbstractMap.ConstructorProperties {
1981
+
1982
+ // Own constructor properties of Gee-1.0.Gee.TreeMap
1983
+
1984
+ key_compare_func?: GLib.CompareFunc | null
1985
+ value_equal_func?: GLib.EqualFunc | null
1986
+ }
1987
+
1988
+ }
1989
+
1990
+ interface TreeMap {
1991
+
1992
+ // Own properties of Gee-1.0.Gee.TreeMap
1993
+
1994
+ key_compare_func: GLib.CompareFunc
1995
+ value_equal_func: GLib.EqualFunc
1996
+
1997
+ // Own fields of Gee-1.0.Gee.TreeMap
1998
+
1999
+ parent_instance: AbstractMap & GObject.Object
2000
+ priv: any
2001
+
2002
+ // Class property signals of Gee-1.0.Gee.TreeMap
2003
+
2004
+ connect(sigName: "notify::key-compare-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2005
+ connect_after(sigName: "notify::key-compare-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2006
+ emit(sigName: "notify::key-compare-func", ...args: any[]): void
2007
+ connect(sigName: "notify::value-equal-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2008
+ connect_after(sigName: "notify::value-equal-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2009
+ emit(sigName: "notify::value-equal-func", ...args: any[]): void
2010
+ connect(sigName: "notify::size", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2011
+ connect_after(sigName: "notify::size", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2012
+ emit(sigName: "notify::size", ...args: any[]): void
2013
+ connect(sigName: "notify::is-empty", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2014
+ connect_after(sigName: "notify::is-empty", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2015
+ emit(sigName: "notify::is-empty", ...args: any[]): void
2016
+ connect(sigName: "notify::keys", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2017
+ connect_after(sigName: "notify::keys", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2018
+ emit(sigName: "notify::keys", ...args: any[]): void
2019
+ connect(sigName: "notify::values", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2020
+ connect_after(sigName: "notify::values", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2021
+ emit(sigName: "notify::values", ...args: any[]): void
2022
+ connect(sigName: "notify::entries", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2023
+ connect_after(sigName: "notify::entries", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2024
+ emit(sigName: "notify::entries", ...args: any[]): void
2025
+ connect(sigName: "notify::read-only-view", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2026
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
2027
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
2028
+ connect(sigName: string, callback: (...args: any[]) => void): number
2029
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2030
+ emit(sigName: string, ...args: any[]): void
2031
+ disconnect(id: number): void
2032
+ }
2033
+
2034
+ class TreeMap extends AbstractMap {
2035
+
2036
+ // Own properties of Gee-1.0.Gee.TreeMap
2037
+
2038
+ static name: string
2039
+ static $gtype: GObject.GType<TreeMap>
2040
+
2041
+ // Constructors of Gee-1.0.Gee.TreeMap
2042
+
2043
+ constructor(config?: TreeMap.ConstructorProperties)
2044
+ constructor(key_compare_func?: GLib.CompareFunc | null, value_equal_func?: GLib.EqualFunc | null)
2045
+ static new(key_compare_func?: GLib.CompareFunc | null, value_equal_func?: GLib.EqualFunc | null): TreeMap
2046
+ _init(config?: TreeMap.ConstructorProperties): void
2047
+ }
2048
+
2049
+ module TreeMultiMap {
2050
+
2051
+ // Constructor properties interface
2052
+
2053
+ interface ConstructorProperties extends AbstractMultiMap.ConstructorProperties {
2054
+
2055
+ // Own constructor properties of Gee-1.0.Gee.TreeMultiMap
2056
+
2057
+ value_compare_func?: GLib.CompareFunc | null
2058
+ }
2059
+
2060
+ }
2061
+
2062
+ interface TreeMultiMap {
2063
+
2064
+ // Own properties of Gee-1.0.Gee.TreeMultiMap
2065
+
2066
+ readonly key_compare_func: GLib.CompareFunc
2067
+ value_compare_func: GLib.CompareFunc
2068
+
2069
+ // Own fields of Gee-1.0.Gee.TreeMultiMap
2070
+
2071
+ parent_instance: AbstractMultiMap & GObject.Object
2072
+ priv: any
2073
+
2074
+ // Class property signals of Gee-1.0.Gee.TreeMultiMap
2075
+
2076
+ connect(sigName: "notify::key-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
2077
+ connect_after(sigName: "notify::key-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
2078
+ emit(sigName: "notify::key-compare-func", ...args: any[]): void
2079
+ connect(sigName: "notify::value-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
2080
+ connect_after(sigName: "notify::value-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
2081
+ emit(sigName: "notify::value-compare-func", ...args: any[]): void
2082
+ connect(sigName: string, callback: (...args: any[]) => void): number
2083
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2084
+ emit(sigName: string, ...args: any[]): void
2085
+ disconnect(id: number): void
2086
+ }
2087
+
2088
+ class TreeMultiMap extends AbstractMultiMap {
2089
+
2090
+ // Own properties of Gee-1.0.Gee.TreeMultiMap
2091
+
2092
+ static name: string
2093
+ static $gtype: GObject.GType<TreeMultiMap>
2094
+
2095
+ // Constructors of Gee-1.0.Gee.TreeMultiMap
2096
+
2097
+ constructor(config?: TreeMultiMap.ConstructorProperties)
2098
+ constructor(key_compare_func?: GLib.CompareFunc | null, value_compare_func?: GLib.CompareFunc | null)
2099
+ static new(key_compare_func?: GLib.CompareFunc | null, value_compare_func?: GLib.CompareFunc | null): TreeMultiMap
2100
+ _init(config?: TreeMultiMap.ConstructorProperties): void
2101
+ }
2102
+
2103
+ module TreeMultiSet {
2104
+
2105
+ // Constructor properties interface
2106
+
2107
+ interface ConstructorProperties extends AbstractMultiSet.ConstructorProperties {
2108
+ }
2109
+
2110
+ }
2111
+
2112
+ interface TreeMultiSet {
2113
+
2114
+ // Own properties of Gee-1.0.Gee.TreeMultiSet
2115
+
2116
+ readonly compare_func: GLib.CompareFunc
2117
+
2118
+ // Own fields of Gee-1.0.Gee.TreeMultiSet
2119
+
2120
+ parent_instance: AbstractMultiSet & AbstractCollection & GObject.Object & GObject.Object
2121
+ priv: any
2122
+
2123
+ // Class property signals of Gee-1.0.Gee.TreeMultiSet
2124
+
2125
+ connect(sigName: "notify::compare-func", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2126
+ connect_after(sigName: "notify::compare-func", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2127
+ emit(sigName: "notify::compare-func", ...args: any[]): void
2128
+ connect(sigName: "notify::size", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2129
+ connect_after(sigName: "notify::size", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2130
+ emit(sigName: "notify::size", ...args: any[]): void
2131
+ connect(sigName: "notify::is-empty", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2132
+ connect_after(sigName: "notify::is-empty", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2133
+ emit(sigName: "notify::is-empty", ...args: any[]): void
2134
+ connect(sigName: "notify::read-only-view", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2135
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
2136
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
2137
+ connect(sigName: string, callback: (...args: any[]) => void): number
2138
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2139
+ emit(sigName: string, ...args: any[]): void
2140
+ disconnect(id: number): void
2141
+ }
2142
+
2143
+ class TreeMultiSet extends AbstractMultiSet {
2144
+
2145
+ // Own properties of Gee-1.0.Gee.TreeMultiSet
2146
+
2147
+ static name: string
2148
+ static $gtype: GObject.GType<TreeMultiSet>
2149
+
2150
+ // Constructors of Gee-1.0.Gee.TreeMultiSet
2151
+
2152
+ constructor(config?: TreeMultiSet.ConstructorProperties)
2153
+ constructor(compare_func?: GLib.CompareFunc | null)
2154
+ static new(compare_func?: GLib.CompareFunc | null): TreeMultiSet
2155
+ _init(config?: TreeMultiSet.ConstructorProperties): void
2156
+ }
2157
+
2158
+ module TreeSet {
2159
+
2160
+ // Constructor properties interface
2161
+
2162
+ interface ConstructorProperties extends SortedSet.ConstructorProperties, AbstractSet.ConstructorProperties {
2163
+
2164
+ // Own constructor properties of Gee-1.0.Gee.TreeSet
2165
+
2166
+ compare_func?: GLib.CompareFunc | null
2167
+ }
2168
+
2169
+ }
2170
+
2171
+ interface TreeSet extends SortedSet {
2172
+
2173
+ // Own properties of Gee-1.0.Gee.TreeSet
2174
+
2175
+ compare_func: GLib.CompareFunc
2176
+
2177
+ // Conflicting properties
2178
+
2179
+ read_only_view: any
2180
+
2181
+ // Own fields of Gee-1.0.Gee.TreeSet
2182
+
2183
+ parent_instance: AbstractSet & AbstractCollection & GObject.Object & GObject.Object
2184
+ priv: any
2185
+
2186
+ // Class property signals of Gee-1.0.Gee.TreeSet
2187
+
2188
+ connect(sigName: "notify::compare-func", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2189
+ connect_after(sigName: "notify::compare-func", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2190
+ emit(sigName: "notify::compare-func", ...args: any[]): void
2191
+ connect(sigName: "notify::read-only-view", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2192
+ connect_after(sigName: "notify::read-only-view", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2193
+ emit(sigName: "notify::read-only-view", ...args: any[]): void
2194
+ connect(sigName: "notify::size", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2195
+ connect_after(sigName: "notify::size", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2196
+ emit(sigName: "notify::size", ...args: any[]): void
2197
+ connect(sigName: "notify::is-empty", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2198
+ connect_after(sigName: "notify::is-empty", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2199
+ emit(sigName: "notify::is-empty", ...args: any[]): void
2200
+ connect(sigName: "notify::element-type", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2201
+ connect_after(sigName: "notify::element-type", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
2202
+ emit(sigName: "notify::element-type", ...args: any[]): void
2203
+ connect(sigName: string, callback: (...args: any[]) => void): number
2204
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2205
+ emit(sigName: string, ...args: any[]): void
2206
+ disconnect(id: number): void
2207
+ }
2208
+
2209
+ class TreeSet extends AbstractSet {
2210
+
2211
+ // Own properties of Gee-1.0.Gee.TreeSet
2212
+
2213
+ static name: string
2214
+ static $gtype: GObject.GType<TreeSet>
2215
+
2216
+ // Constructors of Gee-1.0.Gee.TreeSet
2217
+
2218
+ constructor(config?: TreeSet.ConstructorProperties)
2219
+ constructor(compare_func?: GLib.CompareFunc | null)
2220
+ static new(compare_func?: GLib.CompareFunc | null): TreeSet
2221
+ _init(config?: TreeSet.ConstructorProperties): void
2222
+
2223
+ // Conflicting static methods
2224
+
2225
+ static empty(): Set
2226
+
2227
+ // Overloads of empty
2228
+
2229
+ static empty(): Collection
2230
+ static empty(): Collection
2231
+ }
2232
+
2233
+ module MapEntry {
2234
+
2235
+ // Constructor properties interface
2236
+
2237
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
2238
+
2239
+ // Own constructor properties of Gee-1.0.Gee.MapEntry
2240
+
2241
+ value?: any | null
2242
+ }
2243
+
2244
+ }
2245
+
2246
+ interface MapEntry {
2247
+
2248
+ // Own properties of Gee-1.0.Gee.MapEntry
2249
+
2250
+ readonly key: any
2251
+ value: any
2252
+
2253
+ // Own fields of Gee-1.0.Gee.MapEntry
2254
+
2255
+ parent_instance: GObject.Object
2256
+ priv: EntryPrivate
2257
+
2258
+ // Class property signals of Gee-1.0.Gee.MapEntry
2259
+
2260
+ connect(sigName: "notify::key", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
2261
+ connect_after(sigName: "notify::key", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
2262
+ emit(sigName: "notify::key", ...args: any[]): void
2263
+ connect(sigName: "notify::value", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
2264
+ connect_after(sigName: "notify::value", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
2265
+ emit(sigName: "notify::value", ...args: any[]): void
2266
+ connect(sigName: string, callback: (...args: any[]) => void): number
2267
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2268
+ emit(sigName: string, ...args: any[]): void
2269
+ disconnect(id: number): void
2270
+ }
2271
+
2272
+ class MapEntry extends GObject.Object {
2273
+
2274
+ // Own properties of Gee-1.0.Gee.MapEntry
2275
+
2276
+ static name: string
2277
+ static $gtype: GObject.GType<MapEntry>
2278
+
2279
+ // Constructors of Gee-1.0.Gee.MapEntry
2280
+
2281
+ constructor(config?: MapEntry.ConstructorProperties)
2282
+ _init(config?: MapEntry.ConstructorProperties): void
2283
+ }
2284
+
2285
+ interface AbstractCollectionClass {
2286
+
2287
+ // Own fields of Gee-1.0.Gee.AbstractCollectionClass
2288
+
2289
+ parent_class: GObject.ObjectClass
2290
+ contains: (self: AbstractCollection, item?: any | null) => boolean
2291
+ add: (self: AbstractCollection, item?: any | null) => boolean
2292
+ remove: (self: AbstractCollection, item?: any | null) => boolean
2293
+ clear: (self: AbstractCollection) => void
2294
+ to_array: (self: AbstractCollection) => any[]
2295
+ add_all: (self: AbstractCollection, collection: Collection) => boolean
2296
+ contains_all: (self: AbstractCollection, collection: Collection) => boolean
2297
+ remove_all: (self: AbstractCollection, collection: Collection) => boolean
2298
+ retain_all: (self: AbstractCollection, collection: Collection) => boolean
2299
+ iterator: (self: AbstractCollection) => Iterator
2300
+ }
2301
+
2302
+ abstract class AbstractCollectionClass {
2303
+
2304
+ // Own properties of Gee-1.0.Gee.AbstractCollectionClass
2305
+
2306
+ static name: string
2307
+ }
2308
+
2309
+ interface AbstractCollectionPrivate {
2310
+ }
2311
+
2312
+ class AbstractCollectionPrivate {
2313
+
2314
+ // Own properties of Gee-1.0.Gee.AbstractCollectionPrivate
2315
+
2316
+ static name: string
2317
+ }
2318
+
2319
+ interface AbstractListClass {
2320
+
2321
+ // Own fields of Gee-1.0.Gee.AbstractListClass
2322
+
2323
+ parent_class: AbstractCollectionClass
2324
+ list_iterator: (self: AbstractList) => ListIterator
2325
+ get: (self: AbstractList, index: number) => any | null
2326
+ set: (self: AbstractList, index: number, item?: any | null) => void
2327
+ index_of: (self: AbstractList, item?: any | null) => number
2328
+ insert: (self: AbstractList, index: number, item?: any | null) => void
2329
+ remove_at: (self: AbstractList, index: number) => any | null
2330
+ slice: (self: AbstractList, start: number, stop: number) => List | null
2331
+ first: (self: AbstractList) => any | null
2332
+ last: (self: AbstractList) => any | null
2333
+ insert_all: (self: AbstractList, index: number, collection: Collection) => void
2334
+ }
2335
+
2336
+ abstract class AbstractListClass {
2337
+
2338
+ // Own properties of Gee-1.0.Gee.AbstractListClass
2339
+
2340
+ static name: string
2341
+ }
2342
+
2343
+ interface AbstractListPrivate {
2344
+ }
2345
+
2346
+ class AbstractListPrivate {
2347
+
2348
+ // Own properties of Gee-1.0.Gee.AbstractListPrivate
2349
+
2350
+ static name: string
2351
+ }
2352
+
2353
+ interface AbstractMapClass {
2354
+
2355
+ // Own fields of Gee-1.0.Gee.AbstractMapClass
2356
+
2357
+ parent_class: GObject.ObjectClass
2358
+ has_key: (self: AbstractMap, key?: any | null) => boolean
2359
+ has: (self: AbstractMap, key?: any | null, value?: any | null) => boolean
2360
+ get: (self: AbstractMap, key?: any | null) => any | null
2361
+ set: (self: AbstractMap, key?: any | null, value?: any | null) => void
2362
+ unset: (self: AbstractMap, key?: any | null) => [ /* returnType */ boolean, /* value */ any | null ]
2363
+ map_iterator: (self: AbstractMap) => MapIterator
2364
+ clear: (self: AbstractMap) => void
2365
+ set_all: (self: AbstractMap, map: Map) => void
2366
+ unset_all: (self: AbstractMap, map: Map) => boolean
2367
+ has_all: (self: AbstractMap, map: Map) => boolean
2368
+ }
2369
+
2370
+ abstract class AbstractMapClass {
2371
+
2372
+ // Own properties of Gee-1.0.Gee.AbstractMapClass
2373
+
2374
+ static name: string
2375
+ }
2376
+
2377
+ interface AbstractMapPrivate {
2378
+ }
2379
+
2380
+ class AbstractMapPrivate {
2381
+
2382
+ // Own properties of Gee-1.0.Gee.AbstractMapPrivate
2383
+
2384
+ static name: string
2385
+ }
2386
+
2387
+ interface AbstractMultiMapClass {
2388
+
2389
+ // Own fields of Gee-1.0.Gee.AbstractMultiMapClass
2390
+
2391
+ parent_class: GObject.ObjectClass
2392
+ create_value_storage: (self: AbstractMultiMap) => Collection
2393
+ create_multi_key_set: (self: AbstractMultiMap) => MultiSet
2394
+ get_value_equal_func: (self: AbstractMultiMap) => GLib.EqualFunc
2395
+ }
2396
+
2397
+ abstract class AbstractMultiMapClass {
2398
+
2399
+ // Own properties of Gee-1.0.Gee.AbstractMultiMapClass
2400
+
2401
+ static name: string
2402
+ }
2403
+
2404
+ interface AbstractMultiMapPrivate {
2405
+ }
2406
+
2407
+ class AbstractMultiMapPrivate {
2408
+
2409
+ // Own properties of Gee-1.0.Gee.AbstractMultiMapPrivate
2410
+
2411
+ static name: string
2412
+ }
2413
+
2414
+ interface AbstractMultiSetClass {
2415
+
2416
+ // Own fields of Gee-1.0.Gee.AbstractMultiSetClass
2417
+
2418
+ parent_class: AbstractCollectionClass
2419
+ }
2420
+
2421
+ abstract class AbstractMultiSetClass {
2422
+
2423
+ // Own properties of Gee-1.0.Gee.AbstractMultiSetClass
2424
+
2425
+ static name: string
2426
+ }
2427
+
2428
+ interface AbstractMultiSetPrivate {
2429
+ }
2430
+
2431
+ class AbstractMultiSetPrivate {
2432
+
2433
+ // Own properties of Gee-1.0.Gee.AbstractMultiSetPrivate
2434
+
2435
+ static name: string
2436
+ }
2437
+
2438
+ interface AbstractQueueClass {
2439
+
2440
+ // Own fields of Gee-1.0.Gee.AbstractQueueClass
2441
+
2442
+ parent_class: AbstractCollectionClass
2443
+ offer: (self: AbstractQueue, element?: any | null) => boolean
2444
+ peek: (self: AbstractQueue) => any | null
2445
+ poll: (self: AbstractQueue) => any | null
2446
+ drain: (self: AbstractQueue, recipient: Collection, amount: number) => number
2447
+ }
2448
+
2449
+ abstract class AbstractQueueClass {
2450
+
2451
+ // Own properties of Gee-1.0.Gee.AbstractQueueClass
2452
+
2453
+ static name: string
2454
+ }
2455
+
2456
+ interface AbstractQueuePrivate {
2457
+ }
2458
+
2459
+ class AbstractQueuePrivate {
2460
+
2461
+ // Own properties of Gee-1.0.Gee.AbstractQueuePrivate
2462
+
2463
+ static name: string
2464
+ }
2465
+
2466
+ interface AbstractSetClass {
2467
+
2468
+ // Own fields of Gee-1.0.Gee.AbstractSetClass
2469
+
2470
+ parent_class: AbstractCollectionClass
2471
+ }
2472
+
2473
+ abstract class AbstractSetClass {
2474
+
2475
+ // Own properties of Gee-1.0.Gee.AbstractSetClass
2476
+
2477
+ static name: string
2478
+ }
2479
+
2480
+ interface AbstractSetPrivate {
2481
+ }
2482
+
2483
+ class AbstractSetPrivate {
2484
+
2485
+ // Own properties of Gee-1.0.Gee.AbstractSetPrivate
2486
+
2487
+ static name: string
2488
+ }
2489
+
2490
+ interface ArrayListClass {
2491
+
2492
+ // Own fields of Gee-1.0.Gee.ArrayListClass
2493
+
2494
+ parent_class: AbstractListClass
2495
+ }
2496
+
2497
+ abstract class ArrayListClass {
2498
+
2499
+ // Own properties of Gee-1.0.Gee.ArrayListClass
2500
+
2501
+ static name: string
2502
+ }
2503
+
2504
+ interface ArrayListPrivate {
2505
+ }
2506
+
2507
+ class ArrayListPrivate {
2508
+
2509
+ // Own properties of Gee-1.0.Gee.ArrayListPrivate
2510
+
2511
+ static name: string
2512
+ }
2513
+
2514
+ interface HashMapClass {
2515
+
2516
+ // Own fields of Gee-1.0.Gee.HashMapClass
2517
+
2518
+ parent_class: AbstractMapClass
2519
+ }
2520
+
2521
+ abstract class HashMapClass {
2522
+
2523
+ // Own properties of Gee-1.0.Gee.HashMapClass
2524
+
2525
+ static name: string
2526
+ }
2527
+
2528
+ interface HashMapPrivate {
2529
+ }
2530
+
2531
+ class HashMapPrivate {
2532
+
2533
+ // Own properties of Gee-1.0.Gee.HashMapPrivate
2534
+
2535
+ static name: string
2536
+ }
2537
+
2538
+ interface HashMultiMapClass {
2539
+
2540
+ // Own fields of Gee-1.0.Gee.HashMultiMapClass
2541
+
2542
+ parent_class: AbstractMultiMapClass
2543
+ }
2544
+
2545
+ abstract class HashMultiMapClass {
2546
+
2547
+ // Own properties of Gee-1.0.Gee.HashMultiMapClass
2548
+
2549
+ static name: string
2550
+ }
2551
+
2552
+ interface HashMultiMapPrivate {
2553
+ }
2554
+
2555
+ class HashMultiMapPrivate {
2556
+
2557
+ // Own properties of Gee-1.0.Gee.HashMultiMapPrivate
2558
+
2559
+ static name: string
2560
+ }
2561
+
2562
+ interface HashMultiSetClass {
2563
+
2564
+ // Own fields of Gee-1.0.Gee.HashMultiSetClass
2565
+
2566
+ parent_class: AbstractMultiSetClass
2567
+ }
2568
+
2569
+ abstract class HashMultiSetClass {
2570
+
2571
+ // Own properties of Gee-1.0.Gee.HashMultiSetClass
2572
+
2573
+ static name: string
2574
+ }
2575
+
2576
+ interface HashMultiSetPrivate {
2577
+ }
2578
+
2579
+ class HashMultiSetPrivate {
2580
+
2581
+ // Own properties of Gee-1.0.Gee.HashMultiSetPrivate
2582
+
2583
+ static name: string
2584
+ }
2585
+
2586
+ interface HashSetClass {
2587
+
2588
+ // Own fields of Gee-1.0.Gee.HashSetClass
2589
+
2590
+ parent_class: AbstractSetClass
2591
+ }
2592
+
2593
+ abstract class HashSetClass {
2594
+
2595
+ // Own properties of Gee-1.0.Gee.HashSetClass
2596
+
2597
+ static name: string
2598
+ }
2599
+
2600
+ interface HashSetPrivate {
2601
+ }
2602
+
2603
+ class HashSetPrivate {
2604
+
2605
+ // Own properties of Gee-1.0.Gee.HashSetPrivate
2606
+
2607
+ static name: string
2608
+ }
2609
+
2610
+ interface LinkedListClass {
2611
+
2612
+ // Own fields of Gee-1.0.Gee.LinkedListClass
2613
+
2614
+ parent_class: AbstractListClass
2615
+ }
2616
+
2617
+ abstract class LinkedListClass {
2618
+
2619
+ // Own properties of Gee-1.0.Gee.LinkedListClass
2620
+
2621
+ static name: string
2622
+ }
2623
+
2624
+ interface LinkedListPrivate {
2625
+ }
2626
+
2627
+ class LinkedListPrivate {
2628
+
2629
+ // Own properties of Gee-1.0.Gee.LinkedListPrivate
2630
+
2631
+ static name: string
2632
+ }
2633
+
2634
+ interface PriorityQueueClass {
2635
+
2636
+ // Own fields of Gee-1.0.Gee.PriorityQueueClass
2637
+
2638
+ parent_class: AbstractQueueClass
2639
+ }
2640
+
2641
+ abstract class PriorityQueueClass {
2642
+
2643
+ // Own properties of Gee-1.0.Gee.PriorityQueueClass
2644
+
2645
+ static name: string
2646
+ }
2647
+
2648
+ interface PriorityQueuePrivate {
2649
+ }
2650
+
2651
+ class PriorityQueuePrivate {
2652
+
2653
+ // Own properties of Gee-1.0.Gee.PriorityQueuePrivate
2654
+
2655
+ static name: string
2656
+ }
2657
+
2658
+ interface TreeMapClass {
2659
+
2660
+ // Own fields of Gee-1.0.Gee.TreeMapClass
2661
+
2662
+ parent_class: AbstractMapClass
2663
+ }
2664
+
2665
+ abstract class TreeMapClass {
2666
+
2667
+ // Own properties of Gee-1.0.Gee.TreeMapClass
2668
+
2669
+ static name: string
2670
+ }
2671
+
2672
+ interface TreeMapPrivate {
2673
+ }
2674
+
2675
+ class TreeMapPrivate {
2676
+
2677
+ // Own properties of Gee-1.0.Gee.TreeMapPrivate
2678
+
2679
+ static name: string
2680
+ }
2681
+
2682
+ interface TreeMultiMapClass {
2683
+
2684
+ // Own fields of Gee-1.0.Gee.TreeMultiMapClass
2685
+
2686
+ parent_class: AbstractMultiMapClass
2687
+ }
2688
+
2689
+ abstract class TreeMultiMapClass {
2690
+
2691
+ // Own properties of Gee-1.0.Gee.TreeMultiMapClass
2692
+
2693
+ static name: string
2694
+ }
2695
+
2696
+ interface TreeMultiMapPrivate {
2697
+ }
2698
+
2699
+ class TreeMultiMapPrivate {
2700
+
2701
+ // Own properties of Gee-1.0.Gee.TreeMultiMapPrivate
2702
+
2703
+ static name: string
2704
+ }
2705
+
2706
+ interface TreeMultiSetClass {
2707
+
2708
+ // Own fields of Gee-1.0.Gee.TreeMultiSetClass
2709
+
2710
+ parent_class: AbstractMultiSetClass
2711
+ }
2712
+
2713
+ abstract class TreeMultiSetClass {
2714
+
2715
+ // Own properties of Gee-1.0.Gee.TreeMultiSetClass
2716
+
2717
+ static name: string
2718
+ }
2719
+
2720
+ interface TreeMultiSetPrivate {
2721
+ }
2722
+
2723
+ class TreeMultiSetPrivate {
2724
+
2725
+ // Own properties of Gee-1.0.Gee.TreeMultiSetPrivate
2726
+
2727
+ static name: string
2728
+ }
2729
+
2730
+ interface TreeSetClass {
2731
+
2732
+ // Own fields of Gee-1.0.Gee.TreeSetClass
2733
+
2734
+ parent_class: AbstractSetClass
2735
+ }
2736
+
2737
+ abstract class TreeSetClass {
2738
+
2739
+ // Own properties of Gee-1.0.Gee.TreeSetClass
2740
+
2741
+ static name: string
2742
+ }
2743
+
2744
+ interface TreeSetPrivate {
2745
+ }
2746
+
2747
+ class TreeSetPrivate {
2748
+
2749
+ // Own properties of Gee-1.0.Gee.TreeSetPrivate
2750
+
2751
+ static name: string
2752
+ }
2753
+
2754
+ interface BidirIteratorIface {
2755
+
2756
+ // Own fields of Gee-1.0.Gee.BidirIteratorIface
2757
+
2758
+ parent_iface: GObject.TypeInterface
2759
+ previous: (self: BidirIterator) => boolean
2760
+ has_previous: (self: BidirIterator) => boolean
2761
+ last: (self: BidirIterator) => boolean
2762
+ }
2763
+
2764
+ abstract class BidirIteratorIface {
2765
+
2766
+ // Own properties of Gee-1.0.Gee.BidirIteratorIface
2767
+
2768
+ static name: string
2769
+ }
2770
+
2771
+ interface CollectionIface {
2772
+
2773
+ // Own fields of Gee-1.0.Gee.CollectionIface
2774
+
2775
+ parent_iface: GObject.TypeInterface
2776
+ contains: (self: Collection, item?: any | null) => boolean
2777
+ add: (self: Collection, item?: any | null) => boolean
2778
+ remove: (self: Collection, item?: any | null) => boolean
2779
+ clear: (self: Collection) => void
2780
+ add_all: (self: Collection, collection: Collection) => boolean
2781
+ contains_all: (self: Collection, collection: Collection) => boolean
2782
+ remove_all: (self: Collection, collection: Collection) => boolean
2783
+ retain_all: (self: Collection, collection: Collection) => boolean
2784
+ to_array: (self: Collection) => any[]
2785
+ }
2786
+
2787
+ abstract class CollectionIface {
2788
+
2789
+ // Own properties of Gee-1.0.Gee.CollectionIface
2790
+
2791
+ static name: string
2792
+ }
2793
+
2794
+ interface ComparableIface {
2795
+
2796
+ // Own fields of Gee-1.0.Gee.ComparableIface
2797
+
2798
+ parent_iface: GObject.TypeInterface
2799
+ compare_to: (self: Comparable, object?: any | null) => number
2800
+ }
2801
+
2802
+ abstract class ComparableIface {
2803
+
2804
+ // Own properties of Gee-1.0.Gee.ComparableIface
2805
+
2806
+ static name: string
2807
+ }
2808
+
2809
+ interface DequeIface {
2810
+
2811
+ // Own fields of Gee-1.0.Gee.DequeIface
2812
+
2813
+ parent_iface: GObject.TypeInterface
2814
+ offer_head: (self: Deque, element?: any | null) => boolean
2815
+ peek_head: (self: Deque) => any | null
2816
+ poll_head: (self: Deque) => any | null
2817
+ drain_head: (self: Deque, recipient: Collection, amount: number) => number
2818
+ offer_tail: (self: Deque, element?: any | null) => boolean
2819
+ peek_tail: (self: Deque) => any | null
2820
+ poll_tail: (self: Deque) => any | null
2821
+ drain_tail: (self: Deque, recipient: Collection, amount: number) => number
2822
+ }
2823
+
2824
+ abstract class DequeIface {
2825
+
2826
+ // Own properties of Gee-1.0.Gee.DequeIface
2827
+
2828
+ static name: string
2829
+ }
2830
+
2831
+ interface IterableIface {
2832
+
2833
+ // Own fields of Gee-1.0.Gee.IterableIface
2834
+
2835
+ parent_iface: GObject.TypeInterface
2836
+ iterator: (self: Iterable) => Iterator
2837
+ }
2838
+
2839
+ abstract class IterableIface {
2840
+
2841
+ // Own properties of Gee-1.0.Gee.IterableIface
2842
+
2843
+ static name: string
2844
+ }
2845
+
2846
+ interface IteratorIface {
2847
+
2848
+ // Own fields of Gee-1.0.Gee.IteratorIface
2849
+
2850
+ parent_iface: GObject.TypeInterface
2851
+ next: (self: Iterator) => boolean
2852
+ has_next: (self: Iterator) => boolean
2853
+ first: (self: Iterator) => boolean
2854
+ get: (self: Iterator) => any | null
2855
+ remove: (self: Iterator) => void
2856
+ }
2857
+
2858
+ abstract class IteratorIface {
2859
+
2860
+ // Own properties of Gee-1.0.Gee.IteratorIface
2861
+
2862
+ static name: string
2863
+ }
2864
+
2865
+ interface ListIface {
2866
+
2867
+ // Own fields of Gee-1.0.Gee.ListIface
2868
+
2869
+ parent_iface: GObject.TypeInterface
2870
+ list_iterator: (self: List) => ListIterator
2871
+ get: (self: List, index: number) => any | null
2872
+ set: (self: List, index: number, item?: any | null) => void
2873
+ index_of: (self: List, item?: any | null) => number
2874
+ insert: (self: List, index: number, item?: any | null) => void
2875
+ remove_at: (self: List, index: number) => any | null
2876
+ slice: (self: List, start: number, stop: number) => List | null
2877
+ first: (self: List) => any | null
2878
+ last: (self: List) => any | null
2879
+ insert_all: (self: List, index: number, collection: Collection) => void
2880
+ sort: (self: List, compare_func?: GLib.CompareFunc | null) => void
2881
+ }
2882
+
2883
+ abstract class ListIface {
2884
+
2885
+ // Own properties of Gee-1.0.Gee.ListIface
2886
+
2887
+ static name: string
2888
+ }
2889
+
2890
+ interface ListIteratorIface {
2891
+
2892
+ // Own fields of Gee-1.0.Gee.ListIteratorIface
2893
+
2894
+ parent_iface: GObject.TypeInterface
2895
+ set: (self: ListIterator, item?: any | null) => void
2896
+ insert: (self: ListIterator, item?: any | null) => void
2897
+ add: (self: ListIterator, item?: any | null) => void
2898
+ index: (self: ListIterator) => number
2899
+ }
2900
+
2901
+ abstract class ListIteratorIface {
2902
+
2903
+ // Own properties of Gee-1.0.Gee.ListIteratorIface
2904
+
2905
+ static name: string
2906
+ }
2907
+
2908
+ interface MapIface {
2909
+
2910
+ // Own fields of Gee-1.0.Gee.MapIface
2911
+
2912
+ parent_iface: GObject.TypeInterface
2913
+ has_key: (self: Map, key?: any | null) => boolean
2914
+ contains: (self: Map, key?: any | null) => boolean
2915
+ has: (self: Map, key?: any | null, value?: any | null) => boolean
2916
+ get: (self: Map, key?: any | null) => any | null
2917
+ set: (self: Map, key?: any | null, value?: any | null) => void
2918
+ unset: (self: Map, key?: any | null) => [ /* returnType */ boolean, /* value */ any | null ]
2919
+ remove: (self: Map, key?: any | null) => [ /* returnType */ boolean, /* value */ any | null ]
2920
+ clear: (self: Map) => void
2921
+ map_iterator: (self: Map) => MapIterator
2922
+ set_all: (self: Map, map: Map) => void
2923
+ unset_all: (self: Map, map: Map) => boolean
2924
+ remove_all: (self: Map, map: Map) => boolean
2925
+ has_all: (self: Map, map: Map) => boolean
2926
+ contains_all: (self: Map, map: Map) => boolean
2927
+ }
2928
+
2929
+ abstract class MapIface {
2930
+
2931
+ // Own properties of Gee-1.0.Gee.MapIface
2932
+
2933
+ static name: string
2934
+ }
2935
+
2936
+ interface MapEntryClass {
2937
+
2938
+ // Own fields of Gee-1.0.Gee.MapEntryClass
2939
+
2940
+ parent_class: GObject.ObjectClass
2941
+ }
2942
+
2943
+ abstract class MapEntryClass {
2944
+
2945
+ // Own properties of Gee-1.0.Gee.MapEntryClass
2946
+
2947
+ static name: string
2948
+ }
2949
+
2950
+ interface EntryPrivate {
2951
+ }
2952
+
2953
+ class EntryPrivate {
2954
+
2955
+ // Own properties of Gee-1.0.Gee.EntryPrivate
2956
+
2957
+ static name: string
2958
+ }
2959
+
2960
+ interface MapIteratorIface {
2961
+
2962
+ // Own fields of Gee-1.0.Gee.MapIteratorIface
2963
+
2964
+ parent_iface: GObject.TypeInterface
2965
+ next: (self: MapIterator) => boolean
2966
+ has_next: (self: MapIterator) => boolean
2967
+ first: (self: MapIterator) => boolean
2968
+ get_key: (self: MapIterator) => any | null
2969
+ get_value: (self: MapIterator) => any | null
2970
+ set_value: (self: MapIterator, value?: any | null) => void
2971
+ unset: (self: MapIterator) => void
2972
+ }
2973
+
2974
+ abstract class MapIteratorIface {
2975
+
2976
+ // Own properties of Gee-1.0.Gee.MapIteratorIface
2977
+
2978
+ static name: string
2979
+ }
2980
+
2981
+ interface MultiMapIface {
2982
+
2983
+ // Own fields of Gee-1.0.Gee.MultiMapIface
2984
+
2985
+ parent_iface: GObject.TypeInterface
2986
+ get_keys: (self: MultiMap) => Set
2987
+ get_all_keys: (self: MultiMap) => MultiSet
2988
+ get_values: (self: MultiMap) => Collection
2989
+ contains: (self: MultiMap, key?: any | null) => boolean
2990
+ get: (self: MultiMap, key?: any | null) => Collection
2991
+ set: (self: MultiMap, key?: any | null, value?: any | null) => void
2992
+ remove: (self: MultiMap, key?: any | null, value?: any | null) => boolean
2993
+ remove_all: (self: MultiMap, key?: any | null) => boolean
2994
+ clear: (self: MultiMap) => void
2995
+ }
2996
+
2997
+ abstract class MultiMapIface {
2998
+
2999
+ // Own properties of Gee-1.0.Gee.MultiMapIface
3000
+
3001
+ static name: string
3002
+ }
3003
+
3004
+ interface MultiSetIface {
3005
+
3006
+ // Own fields of Gee-1.0.Gee.MultiSetIface
3007
+
3008
+ parent_iface: GObject.TypeInterface
3009
+ count: (self: MultiSet, item?: any | null) => number
3010
+ }
3011
+
3012
+ abstract class MultiSetIface {
3013
+
3014
+ // Own properties of Gee-1.0.Gee.MultiSetIface
3015
+
3016
+ static name: string
3017
+ }
3018
+
3019
+ interface QueueIface {
3020
+
3021
+ // Own fields of Gee-1.0.Gee.QueueIface
3022
+
3023
+ parent_iface: GObject.TypeInterface
3024
+ offer: (self: Queue, element?: any | null) => boolean
3025
+ peek: (self: Queue) => any | null
3026
+ poll: (self: Queue) => any | null
3027
+ drain: (self: Queue, recipient: Collection, amount: number) => number
3028
+ }
3029
+
3030
+ abstract class QueueIface {
3031
+
3032
+ // Own properties of Gee-1.0.Gee.QueueIface
3033
+
3034
+ static name: string
3035
+ }
3036
+
3037
+ interface SetIface {
3038
+
3039
+ // Own fields of Gee-1.0.Gee.SetIface
3040
+
3041
+ parent_iface: GObject.TypeInterface
3042
+ }
3043
+
3044
+ abstract class SetIface {
3045
+
3046
+ // Own properties of Gee-1.0.Gee.SetIface
3047
+
3048
+ static name: string
3049
+ }
3050
+
3051
+ interface SortedSetIface {
3052
+
3053
+ // Own fields of Gee-1.0.Gee.SortedSetIface
3054
+
3055
+ parent_iface: GObject.TypeInterface
3056
+ first: (self: SortedSet) => any | null
3057
+ last: (self: SortedSet) => any | null
3058
+ bidir_iterator: (self: SortedSet) => BidirIterator
3059
+ iterator_at: (self: SortedSet, element?: any | null) => BidirIterator | null
3060
+ lower: (self: SortedSet, element?: any | null) => any | null
3061
+ higher: (self: SortedSet, element?: any | null) => any | null
3062
+ floor: (self: SortedSet, element?: any | null) => any | null
3063
+ ceil: (self: SortedSet, element?: any | null) => any | null
3064
+ head_set: (self: SortedSet, before?: any | null) => SortedSet
3065
+ tail_set: (self: SortedSet, after?: any | null) => SortedSet
3066
+ sub_set: (self: SortedSet, from?: any | null, to?: any | null) => SortedSet
3067
+ }
3068
+
3069
+ abstract class SortedSetIface {
3070
+
3071
+ // Own properties of Gee-1.0.Gee.SortedSetIface
3072
+
3073
+ static name: string
3074
+ }
3075
+
3076
+ /**
3077
+ * Name of the imported GIR library
3078
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
3079
+ */
3080
+ const __name__: string
3081
+ /**
3082
+ * Version of the imported GIR library
3083
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
3084
+ */
3085
+ const __version__: string
3086
+ }
3087
+
3088
+ export default Gee;
3089
+ // END