@girs/gtksource-3.0 4.9.0 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/gtksource-3.0-vocabulary.d.ts +39 -0
- package/gtksource-3.0-vocabulary.js +25 -0
- package/gtksource-3.0.d.ts +30 -120
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for GtkSource-3.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir)
|
|
7
|
+
GJS TypeScript type definitions for GtkSource-3.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.1.0.
|
|
8
8
|
|
|
9
9
|
This package contains type declarations only. It ships no runtime code, so it adds
|
|
10
10
|
nothing to your program and works with any bundler or none at all.
|
|
@@ -365,6 +365,45 @@ export const FLAG_VALUES_UNREADABLE: Readonly<Record<string, string>>;
|
|
|
365
365
|
*/
|
|
366
366
|
export const PROP_ENUMS: Readonly<Record<string, string>>;
|
|
367
367
|
|
|
368
|
+
/**
|
|
369
|
+
* The kinds of value a GTK accessible property, relation or state takes.
|
|
370
|
+
*
|
|
371
|
+
* `enum` is the one that needs a second lookup: `ARIA_VALUE_ENUMS` names the enum GType,
|
|
372
|
+
* and `ENUM_NICKS` and `ENUM_VALUES` answer from there.
|
|
373
|
+
*/
|
|
374
|
+
export type AriaValueType = 'string' | 'integer' | 'double' | 'boolean' | 'reference' | 'enum';
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* `<enum GType>.<nick>` -> the kind of value that ARIA slot takes.
|
|
378
|
+
*
|
|
379
|
+
* The one table in this file that is not a fact about a ParamSpec. A GtkBuilder or
|
|
380
|
+
* Blueprint `accessibility { … }` block is typed by GTK's ARIA table, not by the widget,
|
|
381
|
+
* and the two disagree where it costs most: `orientation` is settable on a `GtkLabel`
|
|
382
|
+
* that implements no `GtkOrientable`, and `checked` is a `GtkAccessibleTristate`, so
|
|
383
|
+
* `checked: true` is the number 1 rather than a boolean. Typing those slots from the
|
|
384
|
+
* widget's properties gets both wrong and raises nothing.
|
|
385
|
+
*
|
|
386
|
+
* Keyed like `ENUM_VALUES` because the ARIA names ARE enum members — of
|
|
387
|
+
* `GtkAccessibleProperty`, `GtkAccessibleRelation` and `GtkAccessibleState` — so
|
|
388
|
+
* `ENUM_NICKS` already lists them and one key parser reads both.
|
|
389
|
+
*
|
|
390
|
+
* Read from each member's own GIR documentation. `gtk_accessible_property_init_value()`
|
|
391
|
+
* is the C half of this table and is not introspectable; the doc sentence is, and states
|
|
392
|
+
* the type for 52 of the 53 members in gtk4 4.23.3. Complete or absent, never partial: a
|
|
393
|
+
* member the generator cannot answer for fails the build and names itself.
|
|
394
|
+
*/
|
|
395
|
+
export const ARIA_VALUE_TYPES: Readonly<Record<string, AriaValueType>>;
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* The same keys, for the `'enum'` rows only -> the GType of that enum.
|
|
399
|
+
*
|
|
400
|
+
* A table of its own for the reason `PROP_ENUMS` is one: folded in, the values of
|
|
401
|
+
* `ARIA_VALUE_TYPES` would be six reserved words mixed with arbitrary GTypes and telling
|
|
402
|
+
* them apart would be the consumer's problem. Apart, `ARIA_VALUE_TYPES[k] === 'enum'` is
|
|
403
|
+
* the whole test and `ENUM_NICKS[ARIA_VALUE_ENUMS[k]]` is the nick list.
|
|
404
|
+
*/
|
|
405
|
+
export const ARIA_VALUE_ENUMS: Readonly<Record<string, string>>;
|
|
406
|
+
|
|
368
407
|
/** Widget GType -> slot name -> the method that may adopt a child there. */
|
|
369
408
|
export const SLOT_CANDIDATES: Readonly<Record<string, Readonly<Record<string, string>>>>;
|
|
370
409
|
|
|
@@ -189,6 +189,31 @@ export const PROP_ENUMS = {
|
|
|
189
189
|
'GtkSourceView.smart-home-end': 'GtkSourceSmartHomeEndType',
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
+
// `<enum GType>.<nick>` -> the kind of value that ARIA slot takes.
|
|
193
|
+
//
|
|
194
|
+
// The one table here that is not about a ParamSpec. A GtkBuilder or Blueprint
|
|
195
|
+
// `accessibility { … }` block is typed by GTK's ARIA table instead, and the two disagree
|
|
196
|
+
// where it matters: `orientation` is settable on a `GtkLabel` that implements no
|
|
197
|
+
// `GtkOrientable` and has no such property, and `checked` is a `GtkAccessibleTristate`, so
|
|
198
|
+
// `checked: true` means the number 1 and not the boolean. A consumer typing those slots
|
|
199
|
+
// from the widget gets both wrong, silently.
|
|
200
|
+
//
|
|
201
|
+
// Read from each member's own documentation, which is where GTK keeps the table --
|
|
202
|
+
// `gtk_accessible_property_init_value()` is the C half and is not introspectable, the
|
|
203
|
+
// sentence is. Complete or absent, never partial: a member whose documentation states no
|
|
204
|
+
// value type fails generation and names itself, because a missing row is indistinguishable
|
|
205
|
+
// from "GTK has no such name" and the plausible fallback emits `true` where GTK means 1.
|
|
206
|
+
export const ARIA_VALUE_TYPES = {};
|
|
207
|
+
|
|
208
|
+
// The same keys, for the `'enum'` rows only -> the GType of the enum.
|
|
209
|
+
//
|
|
210
|
+
// The join on from a kind to a number, and a table of its own for the reason `PROP_ENUMS`
|
|
211
|
+
// is one: folding the GType into `ARIA_VALUE_TYPES` would make its values a mix of six
|
|
212
|
+
// reserved words and arbitrary GTypes, and telling them apart would be the consumer's
|
|
213
|
+
// problem. With this, `ARIA_VALUE_TYPES[k] === 'enum'` is the whole test, and
|
|
214
|
+
// `ENUM_NICKS[ARIA_VALUE_ENUMS[k]]` is the nick list.
|
|
215
|
+
export const ARIA_VALUE_ENUMS = {};
|
|
216
|
+
|
|
192
217
|
export const SLOT_CANDIDATES = {
|
|
193
218
|
GtkSourceCompletionInfo: {
|
|
194
219
|
'widget': 'set_widget',
|
package/gtksource-3.0.d.ts
CHANGED
|
@@ -914,15 +914,12 @@ export namespace GtkSource {
|
|
|
914
914
|
// Signals
|
|
915
915
|
/** @signal */
|
|
916
916
|
connect<K extends keyof Buffer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Buffer.SignalSignatures[K]>): number;
|
|
917
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
918
917
|
|
|
919
918
|
/** @signal */
|
|
920
919
|
connect_after<K extends keyof Buffer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Buffer.SignalSignatures[K]>): number;
|
|
921
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
922
920
|
|
|
923
921
|
/** @signal */
|
|
924
|
-
emit<K extends keyof Buffer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Buffer.SignalSignatures[K]>
|
|
925
|
-
emit(signal: string, ...args: any[]): void;
|
|
922
|
+
emit<K extends keyof Buffer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Buffer.SignalSignatures[K]>): void;
|
|
926
923
|
|
|
927
924
|
// Virtual methods
|
|
928
925
|
/**
|
|
@@ -1584,15 +1581,12 @@ export namespace GtkSource {
|
|
|
1584
1581
|
// Signals
|
|
1585
1582
|
/** @signal */
|
|
1586
1583
|
connect<K extends keyof Completion.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Completion.SignalSignatures[K]>): number;
|
|
1587
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
1588
1584
|
|
|
1589
1585
|
/** @signal */
|
|
1590
1586
|
connect_after<K extends keyof Completion.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Completion.SignalSignatures[K]>): number;
|
|
1591
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
1592
1587
|
|
|
1593
1588
|
/** @signal */
|
|
1594
|
-
emit<K extends keyof Completion.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Completion.SignalSignatures[K]>
|
|
1595
|
-
emit(signal: string, ...args: any[]): void;
|
|
1589
|
+
emit<K extends keyof Completion.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Completion.SignalSignatures[K]>): void;
|
|
1596
1590
|
|
|
1597
1591
|
// Virtual methods
|
|
1598
1592
|
/**
|
|
@@ -2012,15 +2006,12 @@ export namespace GtkSource {
|
|
|
2012
2006
|
// Signals
|
|
2013
2007
|
/** @signal */
|
|
2014
2008
|
connect<K extends keyof CompletionContext.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionContext.SignalSignatures[K]>): number;
|
|
2015
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
2016
2009
|
|
|
2017
2010
|
/** @signal */
|
|
2018
2011
|
connect_after<K extends keyof CompletionContext.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionContext.SignalSignatures[K]>): number;
|
|
2019
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
2020
2012
|
|
|
2021
2013
|
/** @signal */
|
|
2022
|
-
emit<K extends keyof CompletionContext.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionContext.SignalSignatures[K]>
|
|
2023
|
-
emit(signal: string, ...args: any[]): void;
|
|
2014
|
+
emit<K extends keyof CompletionContext.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionContext.SignalSignatures[K]>): void;
|
|
2024
2015
|
|
|
2025
2016
|
// Virtual methods
|
|
2026
2017
|
/**
|
|
@@ -2176,15 +2167,12 @@ export namespace GtkSource {
|
|
|
2176
2167
|
// Signals
|
|
2177
2168
|
/** @signal */
|
|
2178
2169
|
connect<K extends keyof CompletionInfo.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionInfo.SignalSignatures[K]>): number;
|
|
2179
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
2180
2170
|
|
|
2181
2171
|
/** @signal */
|
|
2182
2172
|
connect_after<K extends keyof CompletionInfo.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionInfo.SignalSignatures[K]>): number;
|
|
2183
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
2184
2173
|
|
|
2185
2174
|
/** @signal */
|
|
2186
|
-
emit<K extends keyof CompletionInfo.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionInfo.SignalSignatures[K]>
|
|
2187
|
-
emit(signal: string, ...args: any[]): void;
|
|
2175
|
+
emit<K extends keyof CompletionInfo.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionInfo.SignalSignatures[K]>): void;
|
|
2188
2176
|
|
|
2189
2177
|
// Virtual methods
|
|
2190
2178
|
/**
|
|
@@ -2333,15 +2321,12 @@ export namespace GtkSource {
|
|
|
2333
2321
|
// Signals
|
|
2334
2322
|
/** @signal */
|
|
2335
2323
|
connect<K extends keyof CompletionItem.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionItem.SignalSignatures[K]>): number;
|
|
2336
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
2337
2324
|
|
|
2338
2325
|
/** @signal */
|
|
2339
2326
|
connect_after<K extends keyof CompletionItem.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionItem.SignalSignatures[K]>): number;
|
|
2340
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
2341
2327
|
|
|
2342
2328
|
/** @signal */
|
|
2343
|
-
emit<K extends keyof CompletionItem.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionItem.SignalSignatures[K]>
|
|
2344
|
-
emit(signal: string, ...args: any[]): void;
|
|
2329
|
+
emit<K extends keyof CompletionItem.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionItem.SignalSignatures[K]>): void;
|
|
2345
2330
|
|
|
2346
2331
|
// Static methods
|
|
2347
2332
|
/**
|
|
@@ -2686,15 +2671,12 @@ export namespace GtkSource {
|
|
|
2686
2671
|
// Signals
|
|
2687
2672
|
/** @signal */
|
|
2688
2673
|
connect<K extends keyof CompletionWords.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionWords.SignalSignatures[K]>): number;
|
|
2689
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
2690
2674
|
|
|
2691
2675
|
/** @signal */
|
|
2692
2676
|
connect_after<K extends keyof CompletionWords.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CompletionWords.SignalSignatures[K]>): number;
|
|
2693
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
2694
2677
|
|
|
2695
2678
|
/** @signal */
|
|
2696
|
-
emit<K extends keyof CompletionWords.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionWords.SignalSignatures[K]>
|
|
2697
|
-
emit(signal: string, ...args: any[]): void;
|
|
2679
|
+
emit<K extends keyof CompletionWords.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CompletionWords.SignalSignatures[K]>): void;
|
|
2698
2680
|
|
|
2699
2681
|
// Methods
|
|
2700
2682
|
/**
|
|
@@ -3099,15 +3081,12 @@ export namespace GtkSource {
|
|
|
3099
3081
|
// Signals
|
|
3100
3082
|
/** @signal */
|
|
3101
3083
|
connect<K extends keyof File.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, File.SignalSignatures[K]>): number;
|
|
3102
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
3103
3084
|
|
|
3104
3085
|
/** @signal */
|
|
3105
3086
|
connect_after<K extends keyof File.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, File.SignalSignatures[K]>): number;
|
|
3106
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
3107
3087
|
|
|
3108
3088
|
/** @signal */
|
|
3109
|
-
emit<K extends keyof File.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<File.SignalSignatures[K]>
|
|
3110
|
-
emit(signal: string, ...args: any[]): void;
|
|
3089
|
+
emit<K extends keyof File.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<File.SignalSignatures[K]>): void;
|
|
3111
3090
|
|
|
3112
3091
|
// Methods
|
|
3113
3092
|
/**
|
|
@@ -3288,15 +3267,12 @@ export namespace GtkSource {
|
|
|
3288
3267
|
// Signals
|
|
3289
3268
|
/** @signal */
|
|
3290
3269
|
connect<K extends keyof FileLoader.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, FileLoader.SignalSignatures[K]>): number;
|
|
3291
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
3292
3270
|
|
|
3293
3271
|
/** @signal */
|
|
3294
3272
|
connect_after<K extends keyof FileLoader.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, FileLoader.SignalSignatures[K]>): number;
|
|
3295
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
3296
3273
|
|
|
3297
3274
|
/** @signal */
|
|
3298
|
-
emit<K extends keyof FileLoader.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<FileLoader.SignalSignatures[K]>
|
|
3299
|
-
emit(signal: string, ...args: any[]): void;
|
|
3275
|
+
emit<K extends keyof FileLoader.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<FileLoader.SignalSignatures[K]>): void;
|
|
3300
3276
|
|
|
3301
3277
|
// Methods
|
|
3302
3278
|
/**
|
|
@@ -3536,15 +3512,12 @@ export namespace GtkSource {
|
|
|
3536
3512
|
// Signals
|
|
3537
3513
|
/** @signal */
|
|
3538
3514
|
connect<K extends keyof FileSaver.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, FileSaver.SignalSignatures[K]>): number;
|
|
3539
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
3540
3515
|
|
|
3541
3516
|
/** @signal */
|
|
3542
3517
|
connect_after<K extends keyof FileSaver.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, FileSaver.SignalSignatures[K]>): number;
|
|
3543
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
3544
3518
|
|
|
3545
3519
|
/** @signal */
|
|
3546
|
-
emit<K extends keyof FileSaver.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<FileSaver.SignalSignatures[K]>
|
|
3547
|
-
emit(signal: string, ...args: any[]): void;
|
|
3520
|
+
emit<K extends keyof FileSaver.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<FileSaver.SignalSignatures[K]>): void;
|
|
3548
3521
|
|
|
3549
3522
|
// Methods
|
|
3550
3523
|
/**
|
|
@@ -3748,15 +3721,12 @@ export namespace GtkSource {
|
|
|
3748
3721
|
// Signals
|
|
3749
3722
|
/** @signal */
|
|
3750
3723
|
connect<K extends keyof Gutter.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Gutter.SignalSignatures[K]>): number;
|
|
3751
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
3752
3724
|
|
|
3753
3725
|
/** @signal */
|
|
3754
3726
|
connect_after<K extends keyof Gutter.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Gutter.SignalSignatures[K]>): number;
|
|
3755
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
3756
3727
|
|
|
3757
3728
|
/** @signal */
|
|
3758
|
-
emit<K extends keyof Gutter.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Gutter.SignalSignatures[K]>
|
|
3759
|
-
emit(signal: string, ...args: any[]): void;
|
|
3729
|
+
emit<K extends keyof Gutter.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Gutter.SignalSignatures[K]>): void;
|
|
3760
3730
|
|
|
3761
3731
|
// Methods
|
|
3762
3732
|
/**
|
|
@@ -4041,15 +4011,12 @@ export namespace GtkSource {
|
|
|
4041
4011
|
// Signals
|
|
4042
4012
|
/** @signal */
|
|
4043
4013
|
connect<K extends keyof GutterRenderer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GutterRenderer.SignalSignatures[K]>): number;
|
|
4044
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
4045
4014
|
|
|
4046
4015
|
/** @signal */
|
|
4047
4016
|
connect_after<K extends keyof GutterRenderer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GutterRenderer.SignalSignatures[K]>): number;
|
|
4048
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
4049
4017
|
|
|
4050
4018
|
/** @signal */
|
|
4051
|
-
emit<K extends keyof GutterRenderer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<GutterRenderer.SignalSignatures[K]>
|
|
4052
|
-
emit(signal: string, ...args: any[]): void;
|
|
4019
|
+
emit<K extends keyof GutterRenderer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<GutterRenderer.SignalSignatures[K]>): void;
|
|
4053
4020
|
|
|
4054
4021
|
// Virtual methods
|
|
4055
4022
|
/**
|
|
@@ -4448,15 +4415,12 @@ export namespace GtkSource {
|
|
|
4448
4415
|
// Signals
|
|
4449
4416
|
/** @signal */
|
|
4450
4417
|
connect<K extends keyof GutterRendererPixbuf.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GutterRendererPixbuf.SignalSignatures[K]>): number;
|
|
4451
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
4452
4418
|
|
|
4453
4419
|
/** @signal */
|
|
4454
4420
|
connect_after<K extends keyof GutterRendererPixbuf.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GutterRendererPixbuf.SignalSignatures[K]>): number;
|
|
4455
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
4456
4421
|
|
|
4457
4422
|
/** @signal */
|
|
4458
|
-
emit<K extends keyof GutterRendererPixbuf.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<GutterRendererPixbuf.SignalSignatures[K]>
|
|
4459
|
-
emit(signal: string, ...args: any[]): void;
|
|
4423
|
+
emit<K extends keyof GutterRendererPixbuf.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<GutterRendererPixbuf.SignalSignatures[K]>): void;
|
|
4460
4424
|
|
|
4461
4425
|
// Methods
|
|
4462
4426
|
/**
|
|
@@ -4565,15 +4529,12 @@ export namespace GtkSource {
|
|
|
4565
4529
|
// Signals
|
|
4566
4530
|
/** @signal */
|
|
4567
4531
|
connect<K extends keyof GutterRendererText.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GutterRendererText.SignalSignatures[K]>): number;
|
|
4568
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
4569
4532
|
|
|
4570
4533
|
/** @signal */
|
|
4571
4534
|
connect_after<K extends keyof GutterRendererText.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GutterRendererText.SignalSignatures[K]>): number;
|
|
4572
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
4573
4535
|
|
|
4574
4536
|
/** @signal */
|
|
4575
|
-
emit<K extends keyof GutterRendererText.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<GutterRendererText.SignalSignatures[K]>
|
|
4576
|
-
emit(signal: string, ...args: any[]): void;
|
|
4537
|
+
emit<K extends keyof GutterRendererText.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<GutterRendererText.SignalSignatures[K]>): void;
|
|
4577
4538
|
|
|
4578
4539
|
// Methods
|
|
4579
4540
|
/**
|
|
@@ -4670,15 +4631,12 @@ export namespace GtkSource {
|
|
|
4670
4631
|
// Signals
|
|
4671
4632
|
/** @signal */
|
|
4672
4633
|
connect<K extends keyof Language.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Language.SignalSignatures[K]>): number;
|
|
4673
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
4674
4634
|
|
|
4675
4635
|
/** @signal */
|
|
4676
4636
|
connect_after<K extends keyof Language.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Language.SignalSignatures[K]>): number;
|
|
4677
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
4678
4637
|
|
|
4679
4638
|
/** @signal */
|
|
4680
|
-
emit<K extends keyof Language.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Language.SignalSignatures[K]>
|
|
4681
|
-
emit(signal: string, ...args: any[]): void;
|
|
4639
|
+
emit<K extends keyof Language.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Language.SignalSignatures[K]>): void;
|
|
4682
4640
|
|
|
4683
4641
|
// Methods
|
|
4684
4642
|
/**
|
|
@@ -4818,15 +4776,12 @@ export namespace GtkSource {
|
|
|
4818
4776
|
// Signals
|
|
4819
4777
|
/** @signal */
|
|
4820
4778
|
connect<K extends keyof LanguageManager.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, LanguageManager.SignalSignatures[K]>): number;
|
|
4821
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
4822
4779
|
|
|
4823
4780
|
/** @signal */
|
|
4824
4781
|
connect_after<K extends keyof LanguageManager.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, LanguageManager.SignalSignatures[K]>): number;
|
|
4825
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
4826
4782
|
|
|
4827
4783
|
/** @signal */
|
|
4828
|
-
emit<K extends keyof LanguageManager.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<LanguageManager.SignalSignatures[K]>
|
|
4829
|
-
emit(signal: string, ...args: any[]): void;
|
|
4784
|
+
emit<K extends keyof LanguageManager.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<LanguageManager.SignalSignatures[K]>): void;
|
|
4830
4785
|
|
|
4831
4786
|
// Static methods
|
|
4832
4787
|
/**
|
|
@@ -5043,15 +4998,12 @@ export namespace GtkSource {
|
|
|
5043
4998
|
// Signals
|
|
5044
4999
|
/** @signal */
|
|
5045
5000
|
connect<K extends keyof Map.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Map.SignalSignatures[K]>): number;
|
|
5046
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
5047
5001
|
|
|
5048
5002
|
/** @signal */
|
|
5049
5003
|
connect_after<K extends keyof Map.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Map.SignalSignatures[K]>): number;
|
|
5050
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
5051
5004
|
|
|
5052
5005
|
/** @signal */
|
|
5053
|
-
emit<K extends keyof Map.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Map.SignalSignatures[K]>
|
|
5054
|
-
emit(signal: string, ...args: any[]): void;
|
|
5006
|
+
emit<K extends keyof Map.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Map.SignalSignatures[K]>): void;
|
|
5055
5007
|
|
|
5056
5008
|
// Methods
|
|
5057
5009
|
/**
|
|
@@ -5121,15 +5073,12 @@ export namespace GtkSource {
|
|
|
5121
5073
|
// Signals
|
|
5122
5074
|
/** @signal */
|
|
5123
5075
|
connect<K extends keyof Mark.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Mark.SignalSignatures[K]>): number;
|
|
5124
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
5125
5076
|
|
|
5126
5077
|
/** @signal */
|
|
5127
5078
|
connect_after<K extends keyof Mark.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Mark.SignalSignatures[K]>): number;
|
|
5128
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
5129
5079
|
|
|
5130
5080
|
/** @signal */
|
|
5131
|
-
emit<K extends keyof Mark.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Mark.SignalSignatures[K]>
|
|
5132
|
-
emit(signal: string, ...args: any[]): void;
|
|
5081
|
+
emit<K extends keyof Mark.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Mark.SignalSignatures[K]>): void;
|
|
5133
5082
|
|
|
5134
5083
|
// Methods
|
|
5135
5084
|
/**
|
|
@@ -5273,15 +5222,12 @@ export namespace GtkSource {
|
|
|
5273
5222
|
// Signals
|
|
5274
5223
|
/** @signal */
|
|
5275
5224
|
connect<K extends keyof MarkAttributes.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, MarkAttributes.SignalSignatures[K]>): number;
|
|
5276
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
5277
5225
|
|
|
5278
5226
|
/** @signal */
|
|
5279
5227
|
connect_after<K extends keyof MarkAttributes.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, MarkAttributes.SignalSignatures[K]>): number;
|
|
5280
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
5281
5228
|
|
|
5282
5229
|
/** @signal */
|
|
5283
|
-
emit<K extends keyof MarkAttributes.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<MarkAttributes.SignalSignatures[K]>
|
|
5284
|
-
emit(signal: string, ...args: any[]): void;
|
|
5230
|
+
emit<K extends keyof MarkAttributes.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<MarkAttributes.SignalSignatures[K]>): void;
|
|
5285
5231
|
|
|
5286
5232
|
// Methods
|
|
5287
5233
|
/**
|
|
@@ -5758,15 +5704,12 @@ export namespace GtkSource {
|
|
|
5758
5704
|
// Signals
|
|
5759
5705
|
/** @signal */
|
|
5760
5706
|
connect<K extends keyof PrintCompositor.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, PrintCompositor.SignalSignatures[K]>): number;
|
|
5761
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
5762
5707
|
|
|
5763
5708
|
/** @signal */
|
|
5764
5709
|
connect_after<K extends keyof PrintCompositor.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, PrintCompositor.SignalSignatures[K]>): number;
|
|
5765
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
5766
5710
|
|
|
5767
5711
|
/** @signal */
|
|
5768
|
-
emit<K extends keyof PrintCompositor.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<PrintCompositor.SignalSignatures[K]>
|
|
5769
|
-
emit(signal: string, ...args: any[]): void;
|
|
5712
|
+
emit<K extends keyof PrintCompositor.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<PrintCompositor.SignalSignatures[K]>): void;
|
|
5770
5713
|
|
|
5771
5714
|
// Methods
|
|
5772
5715
|
/**
|
|
@@ -6269,15 +6212,12 @@ export namespace GtkSource {
|
|
|
6269
6212
|
// Signals
|
|
6270
6213
|
/** @signal */
|
|
6271
6214
|
connect<K extends keyof Region.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Region.SignalSignatures[K]>): number;
|
|
6272
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
6273
6215
|
|
|
6274
6216
|
/** @signal */
|
|
6275
6217
|
connect_after<K extends keyof Region.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Region.SignalSignatures[K]>): number;
|
|
6276
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
6277
6218
|
|
|
6278
6219
|
/** @signal */
|
|
6279
|
-
emit<K extends keyof Region.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Region.SignalSignatures[K]>
|
|
6280
|
-
emit(signal: string, ...args: any[]): void;
|
|
6220
|
+
emit<K extends keyof Region.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Region.SignalSignatures[K]>): void;
|
|
6281
6221
|
|
|
6282
6222
|
// Methods
|
|
6283
6223
|
/**
|
|
@@ -6496,15 +6436,12 @@ export namespace GtkSource {
|
|
|
6496
6436
|
// Signals
|
|
6497
6437
|
/** @signal */
|
|
6498
6438
|
connect<K extends keyof SearchContext.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, SearchContext.SignalSignatures[K]>): number;
|
|
6499
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
6500
6439
|
|
|
6501
6440
|
/** @signal */
|
|
6502
6441
|
connect_after<K extends keyof SearchContext.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, SearchContext.SignalSignatures[K]>): number;
|
|
6503
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
6504
6442
|
|
|
6505
6443
|
/** @signal */
|
|
6506
|
-
emit<K extends keyof SearchContext.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<SearchContext.SignalSignatures[K]>
|
|
6507
|
-
emit(signal: string, ...args: any[]): void;
|
|
6444
|
+
emit<K extends keyof SearchContext.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<SearchContext.SignalSignatures[K]>): void;
|
|
6508
6445
|
|
|
6509
6446
|
// Methods
|
|
6510
6447
|
/**
|
|
@@ -7005,15 +6942,12 @@ export namespace GtkSource {
|
|
|
7005
6942
|
// Signals
|
|
7006
6943
|
/** @signal */
|
|
7007
6944
|
connect<K extends keyof SearchSettings.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, SearchSettings.SignalSignatures[K]>): number;
|
|
7008
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
7009
6945
|
|
|
7010
6946
|
/** @signal */
|
|
7011
6947
|
connect_after<K extends keyof SearchSettings.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, SearchSettings.SignalSignatures[K]>): number;
|
|
7012
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
7013
6948
|
|
|
7014
6949
|
/** @signal */
|
|
7015
|
-
emit<K extends keyof SearchSettings.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<SearchSettings.SignalSignatures[K]>
|
|
7016
|
-
emit(signal: string, ...args: any[]): void;
|
|
6950
|
+
emit<K extends keyof SearchSettings.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<SearchSettings.SignalSignatures[K]>): void;
|
|
7017
6951
|
|
|
7018
6952
|
// Methods
|
|
7019
6953
|
/**
|
|
@@ -7180,15 +7114,12 @@ export namespace GtkSource {
|
|
|
7180
7114
|
// Signals
|
|
7181
7115
|
/** @signal */
|
|
7182
7116
|
connect<K extends keyof SpaceDrawer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, SpaceDrawer.SignalSignatures[K]>): number;
|
|
7183
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
7184
7117
|
|
|
7185
7118
|
/** @signal */
|
|
7186
7119
|
connect_after<K extends keyof SpaceDrawer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, SpaceDrawer.SignalSignatures[K]>): number;
|
|
7187
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
7188
7120
|
|
|
7189
7121
|
/** @signal */
|
|
7190
|
-
emit<K extends keyof SpaceDrawer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<SpaceDrawer.SignalSignatures[K]>
|
|
7191
|
-
emit(signal: string, ...args: any[]): void;
|
|
7122
|
+
emit<K extends keyof SpaceDrawer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<SpaceDrawer.SignalSignatures[K]>): void;
|
|
7192
7123
|
|
|
7193
7124
|
// Methods
|
|
7194
7125
|
/**
|
|
@@ -7542,15 +7473,12 @@ export namespace GtkSource {
|
|
|
7542
7473
|
// Signals
|
|
7543
7474
|
/** @signal */
|
|
7544
7475
|
connect<K extends keyof Style.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Style.SignalSignatures[K]>): number;
|
|
7545
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
7546
7476
|
|
|
7547
7477
|
/** @signal */
|
|
7548
7478
|
connect_after<K extends keyof Style.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Style.SignalSignatures[K]>): number;
|
|
7549
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
7550
7479
|
|
|
7551
7480
|
/** @signal */
|
|
7552
|
-
emit<K extends keyof Style.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Style.SignalSignatures[K]>
|
|
7553
|
-
emit(signal: string, ...args: any[]): void;
|
|
7481
|
+
emit<K extends keyof Style.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Style.SignalSignatures[K]>): void;
|
|
7554
7482
|
|
|
7555
7483
|
// Methods
|
|
7556
7484
|
/**
|
|
@@ -7650,15 +7578,12 @@ export namespace GtkSource {
|
|
|
7650
7578
|
// Signals
|
|
7651
7579
|
/** @signal */
|
|
7652
7580
|
connect<K extends keyof StyleScheme.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleScheme.SignalSignatures[K]>): number;
|
|
7653
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
7654
7581
|
|
|
7655
7582
|
/** @signal */
|
|
7656
7583
|
connect_after<K extends keyof StyleScheme.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleScheme.SignalSignatures[K]>): number;
|
|
7657
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
7658
7584
|
|
|
7659
7585
|
/** @signal */
|
|
7660
|
-
emit<K extends keyof StyleScheme.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleScheme.SignalSignatures[K]>
|
|
7661
|
-
emit(signal: string, ...args: any[]): void;
|
|
7586
|
+
emit<K extends keyof StyleScheme.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleScheme.SignalSignatures[K]>): void;
|
|
7662
7587
|
|
|
7663
7588
|
// Methods
|
|
7664
7589
|
/**
|
|
@@ -7790,15 +7715,12 @@ export namespace GtkSource {
|
|
|
7790
7715
|
// Signals
|
|
7791
7716
|
/** @signal */
|
|
7792
7717
|
connect<K extends keyof StyleSchemeChooserButton.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleSchemeChooserButton.SignalSignatures[K]>): number;
|
|
7793
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
7794
7718
|
|
|
7795
7719
|
/** @signal */
|
|
7796
7720
|
connect_after<K extends keyof StyleSchemeChooserButton.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleSchemeChooserButton.SignalSignatures[K]>): number;
|
|
7797
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
7798
7721
|
|
|
7799
7722
|
/** @signal */
|
|
7800
|
-
emit<K extends keyof StyleSchemeChooserButton.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleSchemeChooserButton.SignalSignatures[K]>
|
|
7801
|
-
emit(signal: string, ...args: any[]): void;
|
|
7723
|
+
emit<K extends keyof StyleSchemeChooserButton.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleSchemeChooserButton.SignalSignatures[K]>): void;
|
|
7802
7724
|
|
|
7803
7725
|
/**
|
|
7804
7726
|
* @default null
|
|
@@ -8287,15 +8209,12 @@ export namespace GtkSource {
|
|
|
8287
8209
|
// Signals
|
|
8288
8210
|
/** @signal */
|
|
8289
8211
|
connect<K extends keyof StyleSchemeChooserWidget.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleSchemeChooserWidget.SignalSignatures[K]>): number;
|
|
8290
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
8291
8212
|
|
|
8292
8213
|
/** @signal */
|
|
8293
8214
|
connect_after<K extends keyof StyleSchemeChooserWidget.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleSchemeChooserWidget.SignalSignatures[K]>): number;
|
|
8294
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
8295
8215
|
|
|
8296
8216
|
/** @signal */
|
|
8297
|
-
emit<K extends keyof StyleSchemeChooserWidget.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleSchemeChooserWidget.SignalSignatures[K]>
|
|
8298
|
-
emit(signal: string, ...args: any[]): void;
|
|
8217
|
+
emit<K extends keyof StyleSchemeChooserWidget.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleSchemeChooserWidget.SignalSignatures[K]>): void;
|
|
8299
8218
|
|
|
8300
8219
|
/**
|
|
8301
8220
|
* The :style-scheme property contains the currently selected style
|
|
@@ -8406,15 +8325,12 @@ export namespace GtkSource {
|
|
|
8406
8325
|
// Signals
|
|
8407
8326
|
/** @signal */
|
|
8408
8327
|
connect<K extends keyof StyleSchemeManager.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleSchemeManager.SignalSignatures[K]>): number;
|
|
8409
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
8410
8328
|
|
|
8411
8329
|
/** @signal */
|
|
8412
8330
|
connect_after<K extends keyof StyleSchemeManager.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, StyleSchemeManager.SignalSignatures[K]>): number;
|
|
8413
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
8414
8331
|
|
|
8415
8332
|
/** @signal */
|
|
8416
|
-
emit<K extends keyof StyleSchemeManager.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleSchemeManager.SignalSignatures[K]>
|
|
8417
|
-
emit(signal: string, ...args: any[]): void;
|
|
8333
|
+
emit<K extends keyof StyleSchemeManager.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<StyleSchemeManager.SignalSignatures[K]>): void;
|
|
8418
8334
|
|
|
8419
8335
|
// Static methods
|
|
8420
8336
|
/**
|
|
@@ -8636,15 +8552,12 @@ export namespace GtkSource {
|
|
|
8636
8552
|
// Signals
|
|
8637
8553
|
/** @signal */
|
|
8638
8554
|
connect<K extends keyof Tag.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Tag.SignalSignatures[K]>): number;
|
|
8639
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
8640
8555
|
|
|
8641
8556
|
/** @signal */
|
|
8642
8557
|
connect_after<K extends keyof Tag.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Tag.SignalSignatures[K]>): number;
|
|
8643
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
8644
8558
|
|
|
8645
8559
|
/** @signal */
|
|
8646
|
-
emit<K extends keyof Tag.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Tag.SignalSignatures[K]>
|
|
8647
|
-
emit(signal: string, ...args: any[]): void;
|
|
8560
|
+
emit<K extends keyof Tag.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Tag.SignalSignatures[K]>): void;
|
|
8648
8561
|
}
|
|
8649
8562
|
|
|
8650
8563
|
|
|
@@ -9129,15 +9042,12 @@ export namespace GtkSource {
|
|
|
9129
9042
|
// Signals
|
|
9130
9043
|
/** @signal */
|
|
9131
9044
|
connect<K extends keyof View.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, View.SignalSignatures[K]>): number;
|
|
9132
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
9133
9045
|
|
|
9134
9046
|
/** @signal */
|
|
9135
9047
|
connect_after<K extends keyof View.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, View.SignalSignatures[K]>): number;
|
|
9136
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
9137
9048
|
|
|
9138
9049
|
/** @signal */
|
|
9139
|
-
emit<K extends keyof View.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<View.SignalSignatures[K]>
|
|
9140
|
-
emit(signal: string, ...args: any[]): void;
|
|
9050
|
+
emit<K extends keyof View.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<View.SignalSignatures[K]>): void;
|
|
9141
9051
|
|
|
9142
9052
|
// Virtual methods
|
|
9143
9053
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gtksource-3.0",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for GtkSource-3.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gtksource-3.0.js",
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
"test": "tsc --project tsconfig.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gjs": "^
|
|
40
|
-
"@girs/gtk-3.0": "^
|
|
41
|
-
"@girs/xlib-2.0": "^
|
|
42
|
-
"@girs/gdk-3.0": "^
|
|
43
|
-
"@girs/cairo-1.0": "^
|
|
44
|
-
"@girs/gobject-2.0": "^
|
|
45
|
-
"@girs/glib-2.0": "^
|
|
46
|
-
"@girs/pango-1.0": "^
|
|
47
|
-
"@girs/harfbuzz-0.0": "^
|
|
48
|
-
"@girs/freetype2-2.0": "^
|
|
49
|
-
"@girs/gio-2.0": "^
|
|
50
|
-
"@girs/gmodule-2.0": "^
|
|
51
|
-
"@girs/gdkpixbuf-2.0": "^
|
|
52
|
-
"@girs/atk-1.0": "^
|
|
39
|
+
"@girs/gjs": "^5.1.0",
|
|
40
|
+
"@girs/gtk-3.0": "^5.1.0",
|
|
41
|
+
"@girs/xlib-2.0": "^5.1.0",
|
|
42
|
+
"@girs/gdk-3.0": "^5.1.0",
|
|
43
|
+
"@girs/cairo-1.0": "^5.1.0",
|
|
44
|
+
"@girs/gobject-2.0": "^5.1.0",
|
|
45
|
+
"@girs/glib-2.0": "^5.1.0",
|
|
46
|
+
"@girs/pango-1.0": "^5.1.0",
|
|
47
|
+
"@girs/harfbuzz-0.0": "^5.1.0",
|
|
48
|
+
"@girs/freetype2-2.0": "^5.1.0",
|
|
49
|
+
"@girs/gio-2.0": "^5.1.0",
|
|
50
|
+
"@girs/gmodule-2.0": "^5.1.0",
|
|
51
|
+
"@girs/gdkpixbuf-2.0": "^5.1.0",
|
|
52
|
+
"@girs/atk-1.0": "^5.1.0" },
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"typescript": "*"
|
|
55
55
|
},
|