@girs/gobject-2.0 2.80.2-4.0.0-beta.8 → 2.80.2-4.0.0-beta.10
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/gobject-2.0.d.ts +83 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for GObject-2.0, generated from library version 2.80.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.
|
|
8
|
+
GJS TypeScript type definitions for GObject-2.0, generated from library version 2.80.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.10.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gobject-2.0.d.ts
CHANGED
|
@@ -2505,6 +2505,17 @@ export namespace GObject {
|
|
|
2505
2505
|
*
|
|
2506
2506
|
* This enumeration can be extended at later date.
|
|
2507
2507
|
*/
|
|
2508
|
+
|
|
2509
|
+
/**
|
|
2510
|
+
* Flags to be passed to g_object_bind_property() or
|
|
2511
|
+
* g_object_bind_property_full().
|
|
2512
|
+
*
|
|
2513
|
+
* This enumeration can be extended at later date.
|
|
2514
|
+
*/
|
|
2515
|
+
export namespace BindingFlags {
|
|
2516
|
+
export const $gtype: GType<BindingFlags>;
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2508
2519
|
enum BindingFlags {
|
|
2509
2520
|
/**
|
|
2510
2521
|
* The default binding; if the source property
|
|
@@ -2536,6 +2547,15 @@ export namespace GObject {
|
|
|
2536
2547
|
* The connection flags are used to specify the behaviour of a signal's
|
|
2537
2548
|
* connection.
|
|
2538
2549
|
*/
|
|
2550
|
+
|
|
2551
|
+
/**
|
|
2552
|
+
* The connection flags are used to specify the behaviour of a signal's
|
|
2553
|
+
* connection.
|
|
2554
|
+
*/
|
|
2555
|
+
export namespace ConnectFlags {
|
|
2556
|
+
export const $gtype: GType<ConnectFlags>;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2539
2559
|
enum ConnectFlags {
|
|
2540
2560
|
/**
|
|
2541
2561
|
* Default behaviour (no special flags). Since: 2.74
|
|
@@ -2553,6 +2573,11 @@ export namespace GObject {
|
|
|
2553
2573
|
*/
|
|
2554
2574
|
SWAPPED,
|
|
2555
2575
|
}
|
|
2576
|
+
|
|
2577
|
+
export namespace IOCondition {
|
|
2578
|
+
export const $gtype: GType<IOCondition>;
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2556
2581
|
enum IOCondition {
|
|
2557
2582
|
IN,
|
|
2558
2583
|
OUT,
|
|
@@ -2567,6 +2592,17 @@ export namespace GObject {
|
|
|
2567
2592
|
*
|
|
2568
2593
|
* See also: %G_PARAM_STATIC_STRINGS
|
|
2569
2594
|
*/
|
|
2595
|
+
|
|
2596
|
+
/**
|
|
2597
|
+
* Through the #GParamFlags flag values, certain aspects of parameters
|
|
2598
|
+
* can be configured.
|
|
2599
|
+
*
|
|
2600
|
+
* See also: %G_PARAM_STATIC_STRINGS
|
|
2601
|
+
*/
|
|
2602
|
+
export namespace ParamFlags {
|
|
2603
|
+
export const $gtype: GType<ParamFlags>;
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2570
2606
|
enum ParamFlags {
|
|
2571
2607
|
/**
|
|
2572
2608
|
* the parameter is readable
|
|
@@ -2636,6 +2672,14 @@ export namespace GObject {
|
|
|
2636
2672
|
/**
|
|
2637
2673
|
* The signal flags are used to specify a signal's behaviour.
|
|
2638
2674
|
*/
|
|
2675
|
+
|
|
2676
|
+
/**
|
|
2677
|
+
* The signal flags are used to specify a signal's behaviour.
|
|
2678
|
+
*/
|
|
2679
|
+
export namespace SignalFlags {
|
|
2680
|
+
export const $gtype: GType<SignalFlags>;
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2639
2683
|
enum SignalFlags {
|
|
2640
2684
|
/**
|
|
2641
2685
|
* Invoke the object method handler in the first emission stage.
|
|
@@ -2696,6 +2740,16 @@ export namespace GObject {
|
|
|
2696
2740
|
* g_signal_handlers_unblock_matched() and g_signal_handlers_disconnect_matched()
|
|
2697
2741
|
* match signals by.
|
|
2698
2742
|
*/
|
|
2743
|
+
|
|
2744
|
+
/**
|
|
2745
|
+
* The match types specify what g_signal_handlers_block_matched(),
|
|
2746
|
+
* g_signal_handlers_unblock_matched() and g_signal_handlers_disconnect_matched()
|
|
2747
|
+
* match signals by.
|
|
2748
|
+
*/
|
|
2749
|
+
export namespace SignalMatchType {
|
|
2750
|
+
export const $gtype: GType<SignalMatchType>;
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2699
2753
|
enum SignalMatchType {
|
|
2700
2754
|
/**
|
|
2701
2755
|
* The signal id must be equal.
|
|
@@ -2729,6 +2783,18 @@ export namespace GObject {
|
|
|
2729
2783
|
* If you need to enable debugging features, use the `GOBJECT_DEBUG`
|
|
2730
2784
|
* environment variable.
|
|
2731
2785
|
*/
|
|
2786
|
+
|
|
2787
|
+
/**
|
|
2788
|
+
* These flags used to be passed to g_type_init_with_debug_flags() which
|
|
2789
|
+
* is now deprecated.
|
|
2790
|
+
*
|
|
2791
|
+
* If you need to enable debugging features, use the `GOBJECT_DEBUG`
|
|
2792
|
+
* environment variable.
|
|
2793
|
+
*/
|
|
2794
|
+
export namespace TypeDebugFlags {
|
|
2795
|
+
export const $gtype: GType<TypeDebugFlags>;
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2732
2798
|
enum TypeDebugFlags {
|
|
2733
2799
|
/**
|
|
2734
2800
|
* Print no messages
|
|
@@ -2754,6 +2820,14 @@ export namespace GObject {
|
|
|
2754
2820
|
/**
|
|
2755
2821
|
* Bit masks used to check or determine characteristics of a type.
|
|
2756
2822
|
*/
|
|
2823
|
+
|
|
2824
|
+
/**
|
|
2825
|
+
* Bit masks used to check or determine characteristics of a type.
|
|
2826
|
+
*/
|
|
2827
|
+
export namespace TypeFlags {
|
|
2828
|
+
export const $gtype: GType<TypeFlags>;
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2757
2831
|
enum TypeFlags {
|
|
2758
2832
|
/**
|
|
2759
2833
|
* No special flags. Since: 2.74
|
|
@@ -2786,6 +2860,15 @@ export namespace GObject {
|
|
|
2786
2860
|
* Bit masks used to check or determine specific characteristics of a
|
|
2787
2861
|
* fundamental type.
|
|
2788
2862
|
*/
|
|
2863
|
+
|
|
2864
|
+
/**
|
|
2865
|
+
* Bit masks used to check or determine specific characteristics of a
|
|
2866
|
+
* fundamental type.
|
|
2867
|
+
*/
|
|
2868
|
+
export namespace TypeFundamentalFlags {
|
|
2869
|
+
export const $gtype: GType<TypeFundamentalFlags>;
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2789
2872
|
enum TypeFundamentalFlags {
|
|
2790
2873
|
/**
|
|
2791
2874
|
* Indicates a classed type
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gobject-2.0",
|
|
3
|
-
"version": "2.80.2-4.0.0-beta.
|
|
3
|
+
"version": "2.80.2-4.0.0-beta.10",
|
|
4
4
|
"description": "GJS TypeScript type definitions for GObject-2.0, generated from library version 2.80.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gobject-2.0.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "^4.0.0-beta.
|
|
35
|
-
"@girs/glib-2.0": "^2.80.2-4.0.0-beta.
|
|
34
|
+
"@girs/gjs": "^4.0.0-beta.10",
|
|
35
|
+
"@girs/glib-2.0": "^2.80.2-4.0.0-beta.10"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typescript": "*"
|