@girs/braseromedia-3.1 4.2.0 → 4.4.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 CHANGED
@@ -5,25 +5,25 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/braseromedia-3.1)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for BraseroMedia-3.1 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.2.0.
8
+ GJS TypeScript type definitions for BraseroMedia-3.1 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.4.0.
9
9
 
10
10
  ## Install
11
11
 
12
- To use this type definitions, install them with NPM:
12
+ Install the type definitions with npm:
13
13
  ```bash
14
14
  npm install @girs/braseromedia-3.1
15
15
  ```
16
16
 
17
17
  ## Usage
18
18
 
19
- You can import this package into your project like this:
19
+ Import it like any other module:
20
20
  ```ts
21
21
  import BraseroMedia from '@girs/braseromedia-3.1';
22
22
  ```
23
23
 
24
24
  ### Ambient Modules
25
25
 
26
- You can also use [ambient modules](https://github.com/gjsify/ts-for-gir/tree/main/packages/cli#ambient-modules) to import this module like you would do this in JavaScript.
26
+ [Ambient modules](https://github.com/gjsify/ts-for-gir/tree/main/packages/cli#ambient-modules) let you write the same import you would in plain JavaScript.
27
27
  For this you need to include `@girs/braseromedia-3.1` or `@girs/braseromedia-3.1/ambient` in your `tsconfig` or entry point Typescript file:
28
28
 
29
29
  `index.ts`:
@@ -42,7 +42,7 @@ import '@girs/braseromedia-3.1'
42
42
  }
43
43
  ```
44
44
 
45
- Now you can import the ambient module with TypeScript support:
45
+ The ambient module now resolves with types:
46
46
 
47
47
  ```ts
48
48
  import BraseroMedia from 'gi://BraseroMedia?version=3.1';
@@ -50,7 +50,7 @@ import BraseroMedia from 'gi://BraseroMedia?version=3.1';
50
50
 
51
51
  ### Global import
52
52
 
53
- You can also import the module with Typescript support using the global `imports.gi` object of GJS.
53
+ GJS's global `imports.gi` works too, with types.
54
54
  For this you need to include `@girs/braseromedia-3.1` or `@girs/braseromedia-3.1/import` in your `tsconfig` or entry point Typescript file:
55
55
 
56
56
  `index.ts`:
@@ -69,7 +69,7 @@ import '@girs/braseromedia-3.1'
69
69
  }
70
70
  ```
71
71
 
72
- Now you have also type support for this, too:
72
+ That form carries types as well:
73
73
 
74
74
  ```ts
75
75
  const BraseroMedia = imports.gi.BraseroMedia;
@@ -77,7 +77,7 @@ const BraseroMedia = imports.gi.BraseroMedia;
77
77
 
78
78
  ### Bundle
79
79
 
80
- Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
80
+ Most projects want a bundler. [esbuild](https://esbuild.github.io/) is the smallest thing that works; the [examples directory](https://github.com/gjsify/ts-for-gir/tree/main/examples) has setups for several others.
81
81
 
82
82
  ## Other packages
83
83
 
@@ -98,6 +98,23 @@ export interface Widgets {
98
98
  /** Every GType this namespace can create. A consumer derives its own tag map. */
99
99
  export type WidgetGType = keyof Widgets;
100
100
 
101
+ // ---------------------------------------------------------------------------
102
+ // Child holders — the same shape, for objects that CARRY a widget without being one.
103
+ //
104
+ // `GtkListItem`, `GtkListHeader`, `GtkColumnViewCell` and `AdwToggle` descend from
105
+ // `GObject.Object` and hold a widget through `set_child`/`get_child`. A renderer places
106
+ // them exactly like a container, so they belong in the vocabulary; a check asking "is
107
+ // this a widget" must still be able to say no. Hence a sibling table rather than four
108
+ // more rows in `Widgets`: concatenate them when you mean both.
109
+ // ---------------------------------------------------------------------------
110
+
111
+ export interface ChildHolders {
112
+
113
+ }
114
+
115
+ /** Every GType this namespace holds a child in without it being a widget. */
116
+ export type ChildHolderGType = keyof ChildHolders;
117
+
101
118
  /** The writable, optional, GObject-keyed property surface of one GType. */
102
119
  export type PropsOf<G extends WidgetGType> = Widgets[G]['props'];
103
120
 
@@ -133,6 +150,9 @@ export const OWN_SIGNALS: Readonly<Record<string, readonly string[]>>;
133
150
  /** Widget GType -> every declaration its members come from, self first. */
134
151
  export const DECLS: Readonly<Record<string, readonly string[]>>;
135
152
 
153
+ /** The GTypes in `DECLS` that hold a widget without being one — see `ChildHolders`. */
154
+ export const CHILD_HOLDERS: readonly string[];
155
+
136
156
  /** Enum GType -> the nicks this surface offers. */
137
157
  export const ENUM_NICKS: Readonly<Record<string, readonly string[]>>;
138
158
 
@@ -23,6 +23,12 @@ export const DECLS = {
23
23
  BraseroMediumSelection: ['BraseroMediumSelection', 'GtkComboBox', 'GtkBin', 'GtkContainer', 'GtkWidget', 'GtkBuildable', 'GtkCellEditable', 'GtkCellLayout'],
24
24
  };
25
25
 
26
+ // The GTypes above that are NOT widgets: they hold one through `set_child`/`get_child`
27
+ // and descend from `GObject.Object`. A renderer places them like a container; a check
28
+ // asking "is this a widget" must not count them. Derived from the accessor pair, never
29
+ // from a list — the count is in the provenance line above.
30
+ export const CHILD_HOLDERS = [];
31
+
26
32
  export const ENUM_NICKS = {};
27
33
 
28
34
  export const SLOT_CANDIDATES = {};
@@ -678,12 +678,14 @@ export namespace BraseroMedia {
678
678
  * @param cell a {@link Gtk.CellRenderer}
679
679
  * @param attribute an attribute on the renderer
680
680
  * @param column the column position on the model to get the attribute from
681
+ * @since 2.4
681
682
  */
682
683
  add_attribute(cell: Gtk.CellRenderer, attribute: string, column: number): void;
683
684
 
684
685
  /**
685
686
  * Unsets all the mappings on all renderers on `cell_layout` and
686
687
  * removes all renderers from `cell_layout`.
688
+ * @since 2.4
687
689
  */
688
690
  clear(): void;
689
691
 
@@ -691,6 +693,7 @@ export namespace BraseroMedia {
691
693
  * Clears all existing attributes previously set with
692
694
  * `gtk_cell_layout_set_attributes()`.
693
695
  * @param cell a {@link Gtk.CellRenderer} to clear the attribute mapping on
696
+ * @since 2.4
694
697
  */
695
698
  clear_attributes(cell: Gtk.CellRenderer): void;
696
699
 
@@ -699,12 +702,14 @@ export namespace BraseroMedia {
699
702
  * if called on a {@link Gtk.CellArea} or might be `null` if no {@link Gtk.CellArea}
700
703
  * is used by `cell_layout`.
701
704
  * @returns the cell area used by `cell_layout`, or `null` in case no cell area is used.
705
+ * @since 3.0
702
706
  */
703
707
  get_area(): Gtk.CellArea | null;
704
708
 
705
709
  /**
706
710
  * Returns the cell renderers which have been added to `cell_layout`.
707
711
  * @returns a list of cell renderers. The list, but not the renderers has been newly allocated and should be freed with `g_list_free()` when no longer needed.
712
+ * @since 2.12
708
713
  */
709
714
  get_cells(): Gtk.CellRenderer[];
710
715
 
@@ -716,6 +721,7 @@ export namespace BraseroMedia {
716
721
  * Note that reusing the same cell renderer is not supported.
717
722
  * @param cell a {@link Gtk.CellRenderer}
718
723
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
724
+ * @since 2.4
719
725
  */
720
726
  pack_end(cell: Gtk.CellRenderer, expand: boolean): void;
721
727
 
@@ -727,6 +733,7 @@ export namespace BraseroMedia {
727
733
  * Note that reusing the same cell renderer is not supported.
728
734
  * @param cell a {@link Gtk.CellRenderer}
729
735
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
736
+ * @since 2.4
730
737
  */
731
738
  pack_start(cell: Gtk.CellRenderer, expand: boolean): void;
732
739
 
@@ -737,6 +744,7 @@ export namespace BraseroMedia {
737
744
  * for this to function properly.
738
745
  * @param cell a {@link Gtk.CellRenderer} to reorder
739
746
  * @param position new position to insert `cell` at
747
+ * @since 2.4
740
748
  */
741
749
  reorder(cell: Gtk.CellRenderer, position: number): void;
742
750
 
@@ -750,6 +758,7 @@ export namespace BraseroMedia {
750
758
  * `func` may be `null` to remove a previously set function.
751
759
  * @param cell a {@link Gtk.CellRenderer}
752
760
  * @param func the {@link Gtk.CellLayoutDataFunc} to use, or `null`
761
+ * @since 2.4
753
762
  */
754
763
  set_cell_data_func(cell: Gtk.CellRenderer, func: Gtk.CellLayoutDataFunc | null): void;
755
764
 
@@ -763,6 +772,7 @@ export namespace BraseroMedia {
763
772
  * @param cell a {@link Gtk.CellRenderer}
764
773
  * @param attribute an attribute on the renderer
765
774
  * @param column the column position on the model to get the attribute from
775
+ * @since 2.4
766
776
  * @virtual
767
777
  */
768
778
  vfunc_add_attribute(cell: Gtk.CellRenderer, attribute: string, column: number): void;
@@ -770,6 +780,7 @@ export namespace BraseroMedia {
770
780
  /**
771
781
  * Unsets all the mappings on all renderers on `cell_layout` and
772
782
  * removes all renderers from `cell_layout`.
783
+ * @since 2.4
773
784
  * @virtual
774
785
  */
775
786
  vfunc_clear(): void;
@@ -778,6 +789,7 @@ export namespace BraseroMedia {
778
789
  * Clears all existing attributes previously set with
779
790
  * `gtk_cell_layout_set_attributes()`.
780
791
  * @param cell a {@link Gtk.CellRenderer} to clear the attribute mapping on
792
+ * @since 2.4
781
793
  * @virtual
782
794
  */
783
795
  vfunc_clear_attributes(cell: Gtk.CellRenderer): void;
@@ -786,12 +798,14 @@ export namespace BraseroMedia {
786
798
  * Returns the underlying {@link Gtk.CellArea} which might be `cell_layout`
787
799
  * if called on a {@link Gtk.CellArea} or might be `null` if no {@link Gtk.CellArea}
788
800
  * is used by `cell_layout`.
801
+ * @since 3.0
789
802
  * @virtual
790
803
  */
791
804
  vfunc_get_area(): Gtk.CellArea | null;
792
805
 
793
806
  /**
794
807
  * Returns the cell renderers which have been added to `cell_layout`.
808
+ * @since 2.12
795
809
  * @virtual
796
810
  */
797
811
  vfunc_get_cells(): Gtk.CellRenderer[];
@@ -804,6 +818,7 @@ export namespace BraseroMedia {
804
818
  * Note that reusing the same cell renderer is not supported.
805
819
  * @param cell a {@link Gtk.CellRenderer}
806
820
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
821
+ * @since 2.4
807
822
  * @virtual
808
823
  */
809
824
  vfunc_pack_end(cell: Gtk.CellRenderer, expand: boolean): void;
@@ -816,6 +831,7 @@ export namespace BraseroMedia {
816
831
  * Note that reusing the same cell renderer is not supported.
817
832
  * @param cell a {@link Gtk.CellRenderer}
818
833
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
834
+ * @since 2.4
819
835
  * @virtual
820
836
  */
821
837
  vfunc_pack_start(cell: Gtk.CellRenderer, expand: boolean): void;
@@ -827,6 +843,7 @@ export namespace BraseroMedia {
827
843
  * for this to function properly.
828
844
  * @param cell a {@link Gtk.CellRenderer} to reorder
829
845
  * @param position new position to insert `cell` at
846
+ * @since 2.4
830
847
  * @virtual
831
848
  */
832
849
  vfunc_reorder(cell: Gtk.CellRenderer, position: number): void;
@@ -841,6 +858,7 @@ export namespace BraseroMedia {
841
858
  * `func` may be `null` to remove a previously set function.
842
859
  * @param cell a {@link Gtk.CellRenderer}
843
860
  * @param func the {@link Gtk.CellLayoutDataFunc} to use, or `null`
861
+ * @since 2.4
844
862
  * @virtual
845
863
  */
846
864
  vfunc_set_cell_data_func(cell: Gtk.CellRenderer, func: Gtk.CellLayoutDataFunc | null): void;
@@ -867,6 +885,7 @@ export namespace BraseroMedia {
867
885
  * Returns whether the widget should grab focus when it is clicked with the mouse.
868
886
  * See `gtk_widget_set_focus_on_click()`.
869
887
  * @returns `true` if the widget should grab focus when it is clicked with the mouse.
888
+ * @since 3.20
870
889
  */
871
890
  get_focus_on_click(): boolean;
872
891
 
@@ -876,6 +895,7 @@ export namespace BraseroMedia {
876
895
  * you don’t want the keyboard focus removed from the main area of the
877
896
  * application.
878
897
  * @param focus_on_click whether the widget should grab focus when clicked with the mouse
898
+ * @since 3.20
879
899
  */
880
900
  set_focus_on_click(focus_on_click: boolean): void;
881
901
  }
@@ -1473,12 +1493,14 @@ export namespace BraseroMedia {
1473
1493
  * @param cell a {@link Gtk.CellRenderer}
1474
1494
  * @param attribute an attribute on the renderer
1475
1495
  * @param column the column position on the model to get the attribute from
1496
+ * @since 2.4
1476
1497
  */
1477
1498
  add_attribute(cell: Gtk.CellRenderer, attribute: string, column: number): void;
1478
1499
 
1479
1500
  /**
1480
1501
  * Unsets all the mappings on all renderers on `cell_layout` and
1481
1502
  * removes all renderers from `cell_layout`.
1503
+ * @since 2.4
1482
1504
  */
1483
1505
  clear(): void;
1484
1506
 
@@ -1486,6 +1508,7 @@ export namespace BraseroMedia {
1486
1508
  * Clears all existing attributes previously set with
1487
1509
  * `gtk_cell_layout_set_attributes()`.
1488
1510
  * @param cell a {@link Gtk.CellRenderer} to clear the attribute mapping on
1511
+ * @since 2.4
1489
1512
  */
1490
1513
  clear_attributes(cell: Gtk.CellRenderer): void;
1491
1514
 
@@ -1494,12 +1517,14 @@ export namespace BraseroMedia {
1494
1517
  * if called on a {@link Gtk.CellArea} or might be `null` if no {@link Gtk.CellArea}
1495
1518
  * is used by `cell_layout`.
1496
1519
  * @returns the cell area used by `cell_layout`, or `null` in case no cell area is used.
1520
+ * @since 3.0
1497
1521
  */
1498
1522
  get_area(): Gtk.CellArea | null;
1499
1523
 
1500
1524
  /**
1501
1525
  * Returns the cell renderers which have been added to `cell_layout`.
1502
1526
  * @returns a list of cell renderers. The list, but not the renderers has been newly allocated and should be freed with `g_list_free()` when no longer needed.
1527
+ * @since 2.12
1503
1528
  */
1504
1529
  get_cells(): Gtk.CellRenderer[];
1505
1530
 
@@ -1511,6 +1536,7 @@ export namespace BraseroMedia {
1511
1536
  * Note that reusing the same cell renderer is not supported.
1512
1537
  * @param cell a {@link Gtk.CellRenderer}
1513
1538
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
1539
+ * @since 2.4
1514
1540
  */
1515
1541
  pack_end(cell: Gtk.CellRenderer, expand: boolean): void;
1516
1542
 
@@ -1522,6 +1548,7 @@ export namespace BraseroMedia {
1522
1548
  * Note that reusing the same cell renderer is not supported.
1523
1549
  * @param cell a {@link Gtk.CellRenderer}
1524
1550
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
1551
+ * @since 2.4
1525
1552
  */
1526
1553
  pack_start(cell: Gtk.CellRenderer, expand: boolean): void;
1527
1554
 
@@ -1532,6 +1559,7 @@ export namespace BraseroMedia {
1532
1559
  * for this to function properly.
1533
1560
  * @param cell a {@link Gtk.CellRenderer} to reorder
1534
1561
  * @param position new position to insert `cell` at
1562
+ * @since 2.4
1535
1563
  */
1536
1564
  reorder(cell: Gtk.CellRenderer, position: number): void;
1537
1565
 
@@ -1545,6 +1573,7 @@ export namespace BraseroMedia {
1545
1573
  * `func` may be `null` to remove a previously set function.
1546
1574
  * @param cell a {@link Gtk.CellRenderer}
1547
1575
  * @param func the {@link Gtk.CellLayoutDataFunc} to use, or `null`
1576
+ * @since 2.4
1548
1577
  */
1549
1578
  set_cell_data_func(cell: Gtk.CellRenderer, func: Gtk.CellLayoutDataFunc | null): void;
1550
1579
 
@@ -1558,6 +1587,7 @@ export namespace BraseroMedia {
1558
1587
  * @param cell a {@link Gtk.CellRenderer}
1559
1588
  * @param attribute an attribute on the renderer
1560
1589
  * @param column the column position on the model to get the attribute from
1590
+ * @since 2.4
1561
1591
  * @virtual
1562
1592
  */
1563
1593
  vfunc_add_attribute(cell: Gtk.CellRenderer, attribute: string, column: number): void;
@@ -1565,6 +1595,7 @@ export namespace BraseroMedia {
1565
1595
  /**
1566
1596
  * Unsets all the mappings on all renderers on `cell_layout` and
1567
1597
  * removes all renderers from `cell_layout`.
1598
+ * @since 2.4
1568
1599
  * @virtual
1569
1600
  */
1570
1601
  vfunc_clear(): void;
@@ -1573,6 +1604,7 @@ export namespace BraseroMedia {
1573
1604
  * Clears all existing attributes previously set with
1574
1605
  * `gtk_cell_layout_set_attributes()`.
1575
1606
  * @param cell a {@link Gtk.CellRenderer} to clear the attribute mapping on
1607
+ * @since 2.4
1576
1608
  * @virtual
1577
1609
  */
1578
1610
  vfunc_clear_attributes(cell: Gtk.CellRenderer): void;
@@ -1581,12 +1613,14 @@ export namespace BraseroMedia {
1581
1613
  * Returns the underlying {@link Gtk.CellArea} which might be `cell_layout`
1582
1614
  * if called on a {@link Gtk.CellArea} or might be `null` if no {@link Gtk.CellArea}
1583
1615
  * is used by `cell_layout`.
1616
+ * @since 3.0
1584
1617
  * @virtual
1585
1618
  */
1586
1619
  vfunc_get_area(): Gtk.CellArea | null;
1587
1620
 
1588
1621
  /**
1589
1622
  * Returns the cell renderers which have been added to `cell_layout`.
1623
+ * @since 2.12
1590
1624
  * @virtual
1591
1625
  */
1592
1626
  vfunc_get_cells(): Gtk.CellRenderer[];
@@ -1599,6 +1633,7 @@ export namespace BraseroMedia {
1599
1633
  * Note that reusing the same cell renderer is not supported.
1600
1634
  * @param cell a {@link Gtk.CellRenderer}
1601
1635
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
1636
+ * @since 2.4
1602
1637
  * @virtual
1603
1638
  */
1604
1639
  vfunc_pack_end(cell: Gtk.CellRenderer, expand: boolean): void;
@@ -1611,6 +1646,7 @@ export namespace BraseroMedia {
1611
1646
  * Note that reusing the same cell renderer is not supported.
1612
1647
  * @param cell a {@link Gtk.CellRenderer}
1613
1648
  * @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
1649
+ * @since 2.4
1614
1650
  * @virtual
1615
1651
  */
1616
1652
  vfunc_pack_start(cell: Gtk.CellRenderer, expand: boolean): void;
@@ -1622,6 +1658,7 @@ export namespace BraseroMedia {
1622
1658
  * for this to function properly.
1623
1659
  * @param cell a {@link Gtk.CellRenderer} to reorder
1624
1660
  * @param position new position to insert `cell` at
1661
+ * @since 2.4
1625
1662
  * @virtual
1626
1663
  */
1627
1664
  vfunc_reorder(cell: Gtk.CellRenderer, position: number): void;
@@ -1636,6 +1673,7 @@ export namespace BraseroMedia {
1636
1673
  * `func` may be `null` to remove a previously set function.
1637
1674
  * @param cell a {@link Gtk.CellRenderer}
1638
1675
  * @param func the {@link Gtk.CellLayoutDataFunc} to use, or `null`
1676
+ * @since 2.4
1639
1677
  * @virtual
1640
1678
  */
1641
1679
  vfunc_set_cell_data_func(cell: Gtk.CellRenderer, func: Gtk.CellLayoutDataFunc | null): void;
@@ -1662,6 +1700,7 @@ export namespace BraseroMedia {
1662
1700
  * Returns whether the widget should grab focus when it is clicked with the mouse.
1663
1701
  * See `gtk_widget_set_focus_on_click()`.
1664
1702
  * @returns `true` if the widget should grab focus when it is clicked with the mouse.
1703
+ * @since 3.20
1665
1704
  */
1666
1705
  get_focus_on_click(): boolean;
1667
1706
 
@@ -1671,6 +1710,7 @@ export namespace BraseroMedia {
1671
1710
  * you don’t want the keyboard focus removed from the main area of the
1672
1711
  * application.
1673
1712
  * @param focus_on_click whether the widget should grab focus when clicked with the mouse
1713
+ * @since 3.20
1674
1714
  */
1675
1715
  set_focus_on_click(focus_on_click: boolean): void;
1676
1716
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/braseromedia-3.1",
3
- "version": "4.2.0",
3
+ "version": "4.4.0",
4
4
  "description": "GJS TypeScript type definitions for BraseroMedia-3.1",
5
5
  "type": "module",
6
6
  "module": "braseromedia-3.1.js",
@@ -36,20 +36,20 @@
36
36
  "test": "tsc --project tsconfig.json"
37
37
  },
38
38
  "dependencies": {
39
- "@girs/gjs": "^4.2.0",
40
- "@girs/gtk-3.0": "^4.2.0",
41
- "@girs/xlib-2.0": "^4.2.0",
42
- "@girs/gdk-3.0": "^4.2.0",
43
- "@girs/cairo-1.0": "^4.2.0",
44
- "@girs/gobject-2.0": "^4.2.0",
45
- "@girs/glib-2.0": "^4.2.0",
46
- "@girs/pango-1.0": "^4.2.0",
47
- "@girs/harfbuzz-0.0": "^4.2.0",
48
- "@girs/freetype2-2.0": "^4.2.0",
49
- "@girs/gio-2.0": "^4.2.0",
50
- "@girs/gmodule-2.0": "^4.2.0",
51
- "@girs/gdkpixbuf-2.0": "^4.2.0",
52
- "@girs/atk-1.0": "^4.2.0" },
39
+ "@girs/gjs": "^4.4.0",
40
+ "@girs/gtk-3.0": "^4.4.0",
41
+ "@girs/xlib-2.0": "^4.4.0",
42
+ "@girs/gdk-3.0": "^4.4.0",
43
+ "@girs/cairo-1.0": "^4.4.0",
44
+ "@girs/gobject-2.0": "^4.4.0",
45
+ "@girs/glib-2.0": "^4.4.0",
46
+ "@girs/pango-1.0": "^4.4.0",
47
+ "@girs/harfbuzz-0.0": "^4.4.0",
48
+ "@girs/freetype2-2.0": "^4.4.0",
49
+ "@girs/gio-2.0": "^4.4.0",
50
+ "@girs/gmodule-2.0": "^4.4.0",
51
+ "@girs/gdkpixbuf-2.0": "^4.4.0",
52
+ "@girs/atk-1.0": "^4.4.0" },
53
53
  "devDependencies": {
54
54
  "typescript": "*"
55
55
  },