@girs/gobject-2.0 2.80.2-4.0.0-beta.9 → 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 CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/gobject-2.0)
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.9.
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
@@ -2499,9 +2499,12 @@ 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
- }
2502
+ /**
2503
+ * Flags to be passed to g_object_bind_property() or
2504
+ * g_object_bind_property_full().
2505
+ *
2506
+ * This enumeration can be extended at later date.
2507
+ */
2505
2508
 
2506
2509
  /**
2507
2510
  * Flags to be passed to g_object_bind_property() or
@@ -2509,6 +2512,10 @@ export namespace GObject {
2509
2512
  *
2510
2513
  * This enumeration can be extended at later date.
2511
2514
  */
2515
+ export namespace BindingFlags {
2516
+ export const $gtype: GType<BindingFlags>;
2517
+ }
2518
+
2512
2519
  enum BindingFlags {
2513
2520
  /**
2514
2521
  * The default binding; if the source property
@@ -2536,14 +2543,19 @@ export namespace GObject {
2536
2543
  */
2537
2544
  INVERT_BOOLEAN,
2538
2545
  }
2539
- export namespace ConnectFlags {
2540
- export const $gtype: GType<ConnectFlags>;
2541
- }
2546
+ /**
2547
+ * The connection flags are used to specify the behaviour of a signal's
2548
+ * connection.
2549
+ */
2542
2550
 
2543
2551
  /**
2544
2552
  * The connection flags are used to specify the behaviour of a signal's
2545
2553
  * connection.
2546
2554
  */
2555
+ export namespace ConnectFlags {
2556
+ export const $gtype: GType<ConnectFlags>;
2557
+ }
2558
+
2547
2559
  enum ConnectFlags {
2548
2560
  /**
2549
2561
  * Default behaviour (no special flags). Since: 2.74
@@ -2561,6 +2573,7 @@ export namespace GObject {
2561
2573
  */
2562
2574
  SWAPPED,
2563
2575
  }
2576
+
2564
2577
  export namespace IOCondition {
2565
2578
  export const $gtype: GType<IOCondition>;
2566
2579
  }
@@ -2573,9 +2586,12 @@ export namespace GObject {
2573
2586
  HUP,
2574
2587
  NVAL,
2575
2588
  }
2576
- export namespace ParamFlags {
2577
- export const $gtype: GType<ParamFlags>;
2578
- }
2589
+ /**
2590
+ * Through the #GParamFlags flag values, certain aspects of parameters
2591
+ * can be configured.
2592
+ *
2593
+ * See also: %G_PARAM_STATIC_STRINGS
2594
+ */
2579
2595
 
2580
2596
  /**
2581
2597
  * Through the #GParamFlags flag values, certain aspects of parameters
@@ -2583,6 +2599,10 @@ export namespace GObject {
2583
2599
  *
2584
2600
  * See also: %G_PARAM_STATIC_STRINGS
2585
2601
  */
2602
+ export namespace ParamFlags {
2603
+ export const $gtype: GType<ParamFlags>;
2604
+ }
2605
+
2586
2606
  enum ParamFlags {
2587
2607
  /**
2588
2608
  * the parameter is readable
@@ -2649,13 +2669,17 @@ export namespace GObject {
2649
2669
  */
2650
2670
  DEPRECATED,
2651
2671
  }
2652
- export namespace SignalFlags {
2653
- export const $gtype: GType<SignalFlags>;
2654
- }
2672
+ /**
2673
+ * The signal flags are used to specify a signal's behaviour.
2674
+ */
2655
2675
 
2656
2676
  /**
2657
2677
  * The signal flags are used to specify a signal's behaviour.
2658
2678
  */
2679
+ export namespace SignalFlags {
2680
+ export const $gtype: GType<SignalFlags>;
2681
+ }
2682
+
2659
2683
  enum SignalFlags {
2660
2684
  /**
2661
2685
  * Invoke the object method handler in the first emission stage.
@@ -2711,15 +2735,21 @@ export namespace GObject {
2711
2735
  */
2712
2736
  ACCUMULATOR_FIRST_RUN,
2713
2737
  }
2714
- export namespace SignalMatchType {
2715
- export const $gtype: GType<SignalMatchType>;
2716
- }
2738
+ /**
2739
+ * The match types specify what g_signal_handlers_block_matched(),
2740
+ * g_signal_handlers_unblock_matched() and g_signal_handlers_disconnect_matched()
2741
+ * match signals by.
2742
+ */
2717
2743
 
2718
2744
  /**
2719
2745
  * The match types specify what g_signal_handlers_block_matched(),
2720
2746
  * g_signal_handlers_unblock_matched() and g_signal_handlers_disconnect_matched()
2721
2747
  * match signals by.
2722
2748
  */
2749
+ export namespace SignalMatchType {
2750
+ export const $gtype: GType<SignalMatchType>;
2751
+ }
2752
+
2723
2753
  enum SignalMatchType {
2724
2754
  /**
2725
2755
  * The signal id must be equal.
@@ -2746,9 +2776,13 @@ export namespace GObject {
2746
2776
  */
2747
2777
  UNBLOCKED,
2748
2778
  }
2749
- export namespace TypeDebugFlags {
2750
- export const $gtype: GType<TypeDebugFlags>;
2751
- }
2779
+ /**
2780
+ * These flags used to be passed to g_type_init_with_debug_flags() which
2781
+ * is now deprecated.
2782
+ *
2783
+ * If you need to enable debugging features, use the `GOBJECT_DEBUG`
2784
+ * environment variable.
2785
+ */
2752
2786
 
2753
2787
  /**
2754
2788
  * These flags used to be passed to g_type_init_with_debug_flags() which
@@ -2757,6 +2791,10 @@ export namespace GObject {
2757
2791
  * If you need to enable debugging features, use the `GOBJECT_DEBUG`
2758
2792
  * environment variable.
2759
2793
  */
2794
+ export namespace TypeDebugFlags {
2795
+ export const $gtype: GType<TypeDebugFlags>;
2796
+ }
2797
+
2760
2798
  enum TypeDebugFlags {
2761
2799
  /**
2762
2800
  * Print no messages
@@ -2779,13 +2817,17 @@ export namespace GObject {
2779
2817
  */
2780
2818
  MASK,
2781
2819
  }
2782
- export namespace TypeFlags {
2783
- export const $gtype: GType<TypeFlags>;
2784
- }
2820
+ /**
2821
+ * Bit masks used to check or determine characteristics of a type.
2822
+ */
2785
2823
 
2786
2824
  /**
2787
2825
  * Bit masks used to check or determine characteristics of a type.
2788
2826
  */
2827
+ export namespace TypeFlags {
2828
+ export const $gtype: GType<TypeFlags>;
2829
+ }
2830
+
2789
2831
  enum TypeFlags {
2790
2832
  /**
2791
2833
  * No special flags. Since: 2.74
@@ -2814,14 +2856,19 @@ export namespace GObject {
2814
2856
  */
2815
2857
  DEPRECATED,
2816
2858
  }
2817
- export namespace TypeFundamentalFlags {
2818
- export const $gtype: GType<TypeFundamentalFlags>;
2819
- }
2859
+ /**
2860
+ * Bit masks used to check or determine specific characteristics of a
2861
+ * fundamental type.
2862
+ */
2820
2863
 
2821
2864
  /**
2822
2865
  * Bit masks used to check or determine specific characteristics of a
2823
2866
  * fundamental type.
2824
2867
  */
2868
+ export namespace TypeFundamentalFlags {
2869
+ export const $gtype: GType<TypeFundamentalFlags>;
2870
+ }
2871
+
2825
2872
  enum TypeFundamentalFlags {
2826
2873
  /**
2827
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.9",
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.9",
35
- "@girs/glib-2.0": "^2.80.2-4.0.0-beta.9"
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": "*"