@girs/gobject-2.0 2.80.2-4.0.0-beta.7 → 2.80.2-4.0.0-beta.9
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 +36 -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.9.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gobject-2.0.d.ts
CHANGED
|
@@ -2499,6 +2499,10 @@ export namespace GObject {
|
|
|
2499
2499
|
type VariantBuilder = object | null;
|
|
2500
2500
|
type VariantDict = object | null;
|
|
2501
2501
|
type VariantType = object | null;
|
|
2502
|
+
export namespace BindingFlags {
|
|
2503
|
+
export const $gtype: GType<BindingFlags>;
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2502
2506
|
/**
|
|
2503
2507
|
* Flags to be passed to g_object_bind_property() or
|
|
2504
2508
|
* g_object_bind_property_full().
|
|
@@ -2532,6 +2536,10 @@ export namespace GObject {
|
|
|
2532
2536
|
*/
|
|
2533
2537
|
INVERT_BOOLEAN,
|
|
2534
2538
|
}
|
|
2539
|
+
export namespace ConnectFlags {
|
|
2540
|
+
export const $gtype: GType<ConnectFlags>;
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2535
2543
|
/**
|
|
2536
2544
|
* The connection flags are used to specify the behaviour of a signal's
|
|
2537
2545
|
* connection.
|
|
@@ -2553,6 +2561,10 @@ export namespace GObject {
|
|
|
2553
2561
|
*/
|
|
2554
2562
|
SWAPPED,
|
|
2555
2563
|
}
|
|
2564
|
+
export namespace IOCondition {
|
|
2565
|
+
export const $gtype: GType<IOCondition>;
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2556
2568
|
enum IOCondition {
|
|
2557
2569
|
IN,
|
|
2558
2570
|
OUT,
|
|
@@ -2561,6 +2573,10 @@ export namespace GObject {
|
|
|
2561
2573
|
HUP,
|
|
2562
2574
|
NVAL,
|
|
2563
2575
|
}
|
|
2576
|
+
export namespace ParamFlags {
|
|
2577
|
+
export const $gtype: GType<ParamFlags>;
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2564
2580
|
/**
|
|
2565
2581
|
* Through the #GParamFlags flag values, certain aspects of parameters
|
|
2566
2582
|
* can be configured.
|
|
@@ -2633,6 +2649,10 @@ export namespace GObject {
|
|
|
2633
2649
|
*/
|
|
2634
2650
|
DEPRECATED,
|
|
2635
2651
|
}
|
|
2652
|
+
export namespace SignalFlags {
|
|
2653
|
+
export const $gtype: GType<SignalFlags>;
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2636
2656
|
/**
|
|
2637
2657
|
* The signal flags are used to specify a signal's behaviour.
|
|
2638
2658
|
*/
|
|
@@ -2691,6 +2711,10 @@ export namespace GObject {
|
|
|
2691
2711
|
*/
|
|
2692
2712
|
ACCUMULATOR_FIRST_RUN,
|
|
2693
2713
|
}
|
|
2714
|
+
export namespace SignalMatchType {
|
|
2715
|
+
export const $gtype: GType<SignalMatchType>;
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2694
2718
|
/**
|
|
2695
2719
|
* The match types specify what g_signal_handlers_block_matched(),
|
|
2696
2720
|
* g_signal_handlers_unblock_matched() and g_signal_handlers_disconnect_matched()
|
|
@@ -2722,6 +2746,10 @@ export namespace GObject {
|
|
|
2722
2746
|
*/
|
|
2723
2747
|
UNBLOCKED,
|
|
2724
2748
|
}
|
|
2749
|
+
export namespace TypeDebugFlags {
|
|
2750
|
+
export const $gtype: GType<TypeDebugFlags>;
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2725
2753
|
/**
|
|
2726
2754
|
* These flags used to be passed to g_type_init_with_debug_flags() which
|
|
2727
2755
|
* is now deprecated.
|
|
@@ -2751,6 +2779,10 @@ export namespace GObject {
|
|
|
2751
2779
|
*/
|
|
2752
2780
|
MASK,
|
|
2753
2781
|
}
|
|
2782
|
+
export namespace TypeFlags {
|
|
2783
|
+
export const $gtype: GType<TypeFlags>;
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2754
2786
|
/**
|
|
2755
2787
|
* Bit masks used to check or determine characteristics of a type.
|
|
2756
2788
|
*/
|
|
@@ -2782,6 +2814,10 @@ export namespace GObject {
|
|
|
2782
2814
|
*/
|
|
2783
2815
|
DEPRECATED,
|
|
2784
2816
|
}
|
|
2817
|
+
export namespace TypeFundamentalFlags {
|
|
2818
|
+
export const $gtype: GType<TypeFundamentalFlags>;
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2785
2821
|
/**
|
|
2786
2822
|
* Bit masks used to check or determine specific characteristics of a
|
|
2787
2823
|
* fundamental 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.9",
|
|
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.9",
|
|
35
|
+
"@girs/glib-2.0": "^2.80.2-4.0.0-beta.9"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typescript": "*"
|