@girs/amtk-5 4.2.0 → 4.3.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/amtk-5)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Amtk-5 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.2.0.
8
+ GJS TypeScript type definitions for Amtk-5 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.3.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/amtk-5
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 Amtk from '@girs/amtk-5';
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/amtk-5` or `@girs/amtk-5/ambient` in your `tsconfig` or entry point Typescript file:
28
28
 
29
29
  `index.ts`:
@@ -42,7 +42,7 @@ import '@girs/amtk-5'
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 Amtk from 'gi://Amtk?version=5';
@@ -50,7 +50,7 @@ import Amtk from 'gi://Amtk?version=5';
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/amtk-5` or `@girs/amtk-5/import` in your `tsconfig` or entry point Typescript file:
55
55
 
56
56
  `index.ts`:
@@ -69,7 +69,7 @@ import '@girs/amtk-5'
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 Amtk = imports.gi.Amtk;
@@ -77,7 +77,7 @@ const Amtk = imports.gi.Amtk;
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
 
@@ -0,0 +1,138 @@
1
+ /**
2
+ * The GIR-derived widget VOCABULARY for Amtk-5.
3
+ *
4
+ * GENERATED — do not edit. Provenance: Amtk-5 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object Atk.ImplementorIface
5
+ *
6
+ * 1 concrete widgets, 1 declarations, 0 enum nick unions, 0 slot candidates.
7
+ *
8
+ * Module-scoped exports only. There is no `JSX` namespace here, no tag spelling and
9
+ * no `on<Signal>` prop name: those are DIALECT, and every framework answers them
10
+ * differently. The shape to avoid is the GLOBAL AUGMENT — a `declare global` on
11
+ * `React.JSX` collides with every other library on a shared tag — while a
12
+ * module-scoped `JSX` behind a `jsxImportSource` does not. This package is used by
13
+ * projects that want nothing to do with JSX, so it emits neither; a consumer declaring
14
+ * a module-scoped namespace over these names is doing it right.
15
+ *
16
+ * Three things this is and `ConstructorProps` is not: WRITABLE-only (measured on
17
+ * Gtk-4.0, `ConstructorProps` offers 150 read-only properties across 68 classes as
18
+ * settable, and GTK's failure mode for writing one is exit 0), OPTIONAL, and keyed
19
+ * by the name GObject actually REGISTERED — the dashed spelling `g_object_set`,
20
+ * GtkBuilder XML and Blueprint all use.
21
+ *
22
+ * Signal handler types are not re-derived: `X.SignalSignatures`, which this package
23
+ * already emits for every class with the parent chain, every implemented interface
24
+ * and the `notify::` keys folded in, is what `Widgets[G]['signals']` points at.
25
+ */
26
+
27
+ import type Amtk from './amtk-5.js';
28
+ import type { GtkBinConstructOnly, GtkBinProps, GtkBuildableConstructOnly, GtkBuildableProps, GtkContainerConstructOnly, GtkContainerProps, GtkScrolledWindowConstructOnly, GtkScrolledWindowProps, GtkWidgetConstructOnly, GtkWidgetProps } from '@girs/gtk-3.0/surface';
29
+
30
+ // ---------------------------------------------------------------------------
31
+ // Enum nicks — the string vocabulary GObject registered, from GIR's `glib:nick`.
32
+ //
33
+ // Not derived from the member name. Substituting underscores for dashes is not a law:
34
+ // some nicks keep an underscore the substitution would have replaced, and only the
35
+ // attribute knows which. Gtk-4.0 and Adw-1 contradict no derivation at all, which is
36
+ // how a derived nick passes review and breaks elsewhere.
37
+ // Re-measure with `scripts/check-nick-derivation.mjs` in ts-for-gir.
38
+ // ---------------------------------------------------------------------------
39
+
40
+
41
+
42
+ // ---------------------------------------------------------------------------
43
+ // Property surfaces — one interface per GIR DECLARATION, mirroring GIR's own
44
+ // inheritance rather than flattening per widget.
45
+ //
46
+ // The interfaces are load-bearing, not tidiness: `GtkBox` declares four properties
47
+ // of its own and `orientation` is not among them — it lives on `Gtk.Orientable`,
48
+ // because GObject installs interface properties on the implementor at runtime while
49
+ // GIR keeps them once, on the interface.
50
+ // ---------------------------------------------------------------------------
51
+
52
+ export interface AmtkTreeViewScrolledWindowSizingProps extends GtkScrolledWindowProps, GtkBuildableProps {
53
+ /**
54
+ * Whether to take the #GdkMonitor size into account as a maximum width and height to apply.
55
+ * @since 5.10
56
+ */
57
+ 'monitor-limit-enabled'?: boolean;
58
+ }
59
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
60
+ export type AmtkTreeViewScrolledWindowSizingConstructOnly = GtkScrolledWindowConstructOnly | GtkBuildableConstructOnly;
61
+
62
+ // ---------------------------------------------------------------------------
63
+ // The GType-keyed widget map.
64
+ //
65
+ // Keyed by GType because that is also the GtkBuilder XML key and the typelib key. A
66
+ // consumer maps GTypes to tags in ITS convention — kebab for JSX intrinsics, Pascal
67
+ // for a Vue `GlobalComponents`, the class itself for a renderer whose element type
68
+ // is the class. None of those is baked in here.
69
+ //
70
+ // `slotCandidates` is a candidate list and never an answer: derived from methods
71
+ // taking exactly one widget argument. The GIR cannot tell adoption from reference —
72
+ // `set_title_widget` parents its argument and `set_activatable_widget` does not, and
73
+ // both are `void f(GtkWidget*)` at `transfer-ownership="none"`. Curation decides;
74
+ // this is what notices when a release adds a candidate.
75
+ // ---------------------------------------------------------------------------
76
+
77
+ export interface Widgets {
78
+ AmtkTreeViewScrolledWindowSizing: {
79
+ class: Amtk.TreeViewScrolledWindowSizing;
80
+ props: AmtkTreeViewScrolledWindowSizingProps;
81
+ signals: Amtk.TreeViewScrolledWindowSizing.SignalSignatures;
82
+ constructOnly: AmtkTreeViewScrolledWindowSizingConstructOnly;
83
+ slotCandidates: {};
84
+ };
85
+ }
86
+
87
+ /** Every GType this namespace can create. A consumer derives its own tag map. */
88
+ export type WidgetGType = keyof Widgets;
89
+
90
+ /** The writable, optional, GObject-keyed property surface of one GType. */
91
+ export type PropsOf<G extends WidgetGType> = Widgets[G]['props'];
92
+
93
+ /** The signal table this package already emits, reached by GType. */
94
+ export type SignalsOf<G extends WidgetGType> = Widgets[G]['signals'];
95
+
96
+ /** The instance type — what a `ref`-shaped prop should infer. */
97
+ export type InstanceOf<G extends WidgetGType> = Widgets[G]['class'];
98
+
99
+ /** Property names that can only be set at construction. */
100
+ export type ConstructOnlyOf<G extends WidgetGType> = Widgets[G]['constructOnly'];
101
+
102
+ /** Candidate child slots — see the note above; curation decides. */
103
+ export type SlotCandidatesOf<G extends WidgetGType> = keyof Widgets[G]['slotCandidates'];
104
+
105
+ /**
106
+ * The same facts as runtime data, for a consumer that CHECKS them.
107
+ *
108
+ * Types are erased, so a spec that asks the installed GTK whether every property
109
+ * here is a writable ParamSpec, every signal resolvable by `GObject.signal_lookup`
110
+ * and every nick resolvable through an enum lookup cannot read the interfaces
111
+ * above. Emitted headlessly with no GTK present, which is exactly why the checking
112
+ * belongs to the consumer and the DATA belongs here.
113
+ */
114
+ export const SURFACE_PROVENANCE: string;
115
+
116
+ /** Declaration GType -> its own settable properties, as GObject registered them. */
117
+ export const OWN_PROPS: Readonly<Record<string, readonly string[]>>;
118
+
119
+ /** Widget GType -> its own signals. */
120
+ export const OWN_SIGNALS: Readonly<Record<string, readonly string[]>>;
121
+
122
+ /** Widget GType -> every declaration its members come from, self first. */
123
+ export const DECLS: Readonly<Record<string, readonly string[]>>;
124
+
125
+ /** Enum GType -> the nicks this surface offers. */
126
+ export const ENUM_NICKS: Readonly<Record<string, readonly string[]>>;
127
+
128
+ /** Widget GType -> slot name -> the method that may adopt a child there. */
129
+ export const SLOT_CANDIDATES: Readonly<Record<string, Readonly<Record<string, string>>>>;
130
+
131
+ /**
132
+ * `Type.property` -> the release that introduced it.
133
+ *
134
+ * What keeps a runtime cross-check honest across a version gap without an
135
+ * allowlist: a member the installed library lacks is a defect UNLESS the version
136
+ * here is newer than the one running.
137
+ */
138
+ export const SINCE: Readonly<Record<string, string>>;
@@ -0,0 +1,27 @@
1
+ // The widget vocabulary of Amtk-5 as runtime data.
2
+ //
3
+ // GENERATED — do not edit. Provenance: Amtk-5 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object Atk.ImplementorIface
4
+ //
5
+ // The type half of this subpath is the sibling `.d.ts`. This file exists because
6
+ // types are erased: a consumer that wants to ask the installed library whether every
7
+ // name here is real needs values, not declarations.
8
+
9
+ export const SURFACE_PROVENANCE = 'Amtk-5 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object Atk.ImplementorIface';
10
+
11
+ export const OWN_PROPS = {
12
+ AmtkTreeViewScrolledWindowSizing: ['monitor-limit-enabled'],
13
+ };
14
+
15
+ export const OWN_SIGNALS = {};
16
+
17
+ export const DECLS = {
18
+ AmtkTreeViewScrolledWindowSizing: ['AmtkTreeViewScrolledWindowSizing', 'GtkScrolledWindow', 'GtkBin', 'GtkContainer', 'GtkWidget', 'GtkBuildable'],
19
+ };
20
+
21
+ export const ENUM_NICKS = {};
22
+
23
+ export const SLOT_CANDIDATES = {};
24
+
25
+ export const SINCE = {
26
+ 'AmtkTreeViewScrolledWindowSizing.monitor-limit-enabled': '5.10',
27
+ };
package/amtk-5.d.ts CHANGED
@@ -991,6 +991,149 @@ export namespace Amtk {
991
991
  }
992
992
 
993
993
 
994
+ namespace TreeViewScrolledWindowSizing {
995
+ // Signal signatures
996
+ interface SignalSignatures extends Gtk.ScrolledWindow.SignalSignatures {
997
+ "notify::monitor-limit-enabled": (pspec: GObject.ParamSpec) => void;
998
+ "notify::hadjustment": (pspec: GObject.ParamSpec) => void;
999
+ "notify::hscrollbar-policy": (pspec: GObject.ParamSpec) => void;
1000
+ "notify::kinetic-scrolling": (pspec: GObject.ParamSpec) => void;
1001
+ "notify::max-content-height": (pspec: GObject.ParamSpec) => void;
1002
+ "notify::max-content-width": (pspec: GObject.ParamSpec) => void;
1003
+ "notify::min-content-height": (pspec: GObject.ParamSpec) => void;
1004
+ "notify::min-content-width": (pspec: GObject.ParamSpec) => void;
1005
+ "notify::overlay-scrolling": (pspec: GObject.ParamSpec) => void;
1006
+ "notify::propagate-natural-height": (pspec: GObject.ParamSpec) => void;
1007
+ "notify::propagate-natural-width": (pspec: GObject.ParamSpec) => void;
1008
+ "notify::shadow-type": (pspec: GObject.ParamSpec) => void;
1009
+ "notify::vadjustment": (pspec: GObject.ParamSpec) => void;
1010
+ "notify::vscrollbar-policy": (pspec: GObject.ParamSpec) => void;
1011
+ "notify::window-placement": (pspec: GObject.ParamSpec) => void;
1012
+ "notify::window-placement-set": (pspec: GObject.ParamSpec) => void;
1013
+ "notify::border-width": (pspec: GObject.ParamSpec) => void;
1014
+ "notify::child": (pspec: GObject.ParamSpec) => void;
1015
+ "notify::resize-mode": (pspec: GObject.ParamSpec) => void;
1016
+ "notify::app-paintable": (pspec: GObject.ParamSpec) => void;
1017
+ "notify::can-default": (pspec: GObject.ParamSpec) => void;
1018
+ "notify::can-focus": (pspec: GObject.ParamSpec) => void;
1019
+ "notify::composite-child": (pspec: GObject.ParamSpec) => void;
1020
+ "notify::double-buffered": (pspec: GObject.ParamSpec) => void;
1021
+ "notify::events": (pspec: GObject.ParamSpec) => void;
1022
+ "notify::expand": (pspec: GObject.ParamSpec) => void;
1023
+ "notify::focus-on-click": (pspec: GObject.ParamSpec) => void;
1024
+ "notify::halign": (pspec: GObject.ParamSpec) => void;
1025
+ "notify::has-default": (pspec: GObject.ParamSpec) => void;
1026
+ "notify::has-focus": (pspec: GObject.ParamSpec) => void;
1027
+ "notify::has-tooltip": (pspec: GObject.ParamSpec) => void;
1028
+ "notify::height-request": (pspec: GObject.ParamSpec) => void;
1029
+ "notify::hexpand": (pspec: GObject.ParamSpec) => void;
1030
+ "notify::hexpand-set": (pspec: GObject.ParamSpec) => void;
1031
+ "notify::is-focus": (pspec: GObject.ParamSpec) => void;
1032
+ "notify::margin": (pspec: GObject.ParamSpec) => void;
1033
+ "notify::margin-bottom": (pspec: GObject.ParamSpec) => void;
1034
+ "notify::margin-end": (pspec: GObject.ParamSpec) => void;
1035
+ "notify::margin-left": (pspec: GObject.ParamSpec) => void;
1036
+ "notify::margin-right": (pspec: GObject.ParamSpec) => void;
1037
+ "notify::margin-start": (pspec: GObject.ParamSpec) => void;
1038
+ "notify::margin-top": (pspec: GObject.ParamSpec) => void;
1039
+ "notify::name": (pspec: GObject.ParamSpec) => void;
1040
+ "notify::no-show-all": (pspec: GObject.ParamSpec) => void;
1041
+ "notify::opacity": (pspec: GObject.ParamSpec) => void;
1042
+ "notify::parent": (pspec: GObject.ParamSpec) => void;
1043
+ "notify::receives-default": (pspec: GObject.ParamSpec) => void;
1044
+ "notify::scale-factor": (pspec: GObject.ParamSpec) => void;
1045
+ "notify::sensitive": (pspec: GObject.ParamSpec) => void;
1046
+ "notify::style": (pspec: GObject.ParamSpec) => void;
1047
+ "notify::tooltip-markup": (pspec: GObject.ParamSpec) => void;
1048
+ "notify::tooltip-text": (pspec: GObject.ParamSpec) => void;
1049
+ "notify::valign": (pspec: GObject.ParamSpec) => void;
1050
+ "notify::vexpand": (pspec: GObject.ParamSpec) => void;
1051
+ "notify::vexpand-set": (pspec: GObject.ParamSpec) => void;
1052
+ "notify::visible": (pspec: GObject.ParamSpec) => void;
1053
+ "notify::width-request": (pspec: GObject.ParamSpec) => void;
1054
+ "notify::window": (pspec: GObject.ParamSpec) => void;
1055
+ }
1056
+
1057
+ // Constructor properties interface
1058
+ interface ConstructorProps extends Gtk.ScrolledWindow.ConstructorProps, Atk.ImplementorIface.ConstructorProps, Gtk.Buildable.ConstructorProps {
1059
+ monitor_limit_enabled: boolean;
1060
+ monitorLimitEnabled: boolean;
1061
+ }
1062
+ }
1063
+
1064
+ /**
1065
+ * @gir-type Class
1066
+ */
1067
+ class TreeViewScrolledWindowSizing extends Gtk.ScrolledWindow implements Atk.ImplementorIface, Gtk.Buildable {
1068
+ static $gtype: GObject.GType<TreeViewScrolledWindowSizing>;
1069
+
1070
+ // Properties
1071
+ /**
1072
+ * Whether to take the {@link Gdk.Monitor} size into account as a maximum width
1073
+ * and height to apply.
1074
+ * @since 5.10
1075
+ * @default true
1076
+ */
1077
+ get monitor_limit_enabled(): boolean;
1078
+ set monitor_limit_enabled(val: boolean);
1079
+
1080
+ /**
1081
+ * Whether to take the {@link Gdk.Monitor} size into account as a maximum width
1082
+ * and height to apply.
1083
+ * @since 5.10
1084
+ * @default true
1085
+ */
1086
+ get monitorLimitEnabled(): boolean;
1087
+ set monitorLimitEnabled(val: boolean);
1088
+
1089
+ /**
1090
+ * Compile-time signal type information.
1091
+ *
1092
+ * This instance property is generated only for TypeScript type checking.
1093
+ * It is not defined at runtime and should not be accessed in JS code.
1094
+ * @internal
1095
+ */
1096
+ $signals: TreeViewScrolledWindowSizing.SignalSignatures;
1097
+
1098
+ // Constructors
1099
+ constructor(properties?: Partial<TreeViewScrolledWindowSizing.ConstructorProps>, ...args: any[]);
1100
+
1101
+ _init(...args: any[]): void;
1102
+
1103
+ static ["new"](): TreeViewScrolledWindowSizing;
1104
+
1105
+ // Signals
1106
+ /** @signal */
1107
+ connect<K extends keyof TreeViewScrolledWindowSizing.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, TreeViewScrolledWindowSizing.SignalSignatures[K]>): number;
1108
+ connect(signal: string, callback: (...args: any[]) => any): number;
1109
+
1110
+ /** @signal */
1111
+ connect_after<K extends keyof TreeViewScrolledWindowSizing.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, TreeViewScrolledWindowSizing.SignalSignatures[K]>): number;
1112
+ connect_after(signal: string, callback: (...args: any[]) => any): number;
1113
+
1114
+ /** @signal */
1115
+ emit<K extends keyof TreeViewScrolledWindowSizing.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<TreeViewScrolledWindowSizing.SignalSignatures[K]> extends [any, ...infer Q] ? Q : never): void;
1116
+ emit(signal: string, ...args: any[]): void;
1117
+
1118
+ // Methods
1119
+ /**
1120
+ * @returns the current value of the {@link Amtk.TreeViewScrolledWindowSizing.monitor_limit_enabled} property.
1121
+ */
1122
+ get_monitor_limit(): boolean;
1123
+
1124
+ /**
1125
+ * @returns the {@link Gtk.TreeView}, if the child widget is a {@link Gtk.TreeView}. Otherwise `null` is returned.
1126
+ */
1127
+ get_tree_view(): Gtk.TreeView | null;
1128
+
1129
+ /**
1130
+ * Sets the {@link Amtk.TreeViewScrolledWindowSizing.monitor_limit_enabled} property.
1131
+ * @param monitor_limit the new value.
1132
+ */
1133
+ set_monitor_limit(monitor_limit: boolean): void;
1134
+ }
1135
+
1136
+
994
1137
  /**
995
1138
  * @gir-type Struct
996
1139
  */
@@ -1201,6 +1344,19 @@ export namespace Amtk {
1201
1344
  }
1202
1345
 
1203
1346
 
1347
+ /**
1348
+ * @gir-type Alias
1349
+ */
1350
+ type TreeViewScrolledWindowSizingClass = typeof TreeViewScrolledWindowSizing;
1351
+
1352
+ /**
1353
+ * @gir-type Struct
1354
+ */
1355
+ abstract class TreeViewScrolledWindowSizingPrivate {
1356
+ static $gtype: GObject.GType<TreeViewScrolledWindowSizingPrivate>;
1357
+ }
1358
+
1359
+
1204
1360
  /**
1205
1361
  * Name of the imported GIR library
1206
1362
  * `see` https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/amtk-5",
3
- "version": "4.2.0",
3
+ "version": "4.3.0",
4
4
  "description": "GJS TypeScript type definitions for Amtk-5",
5
5
  "type": "module",
6
6
  "module": "amtk-5.js",
@@ -16,6 +16,11 @@
16
16
  "import": "./amtk-5-import.js",
17
17
  "default": "./amtk-5-import.js"
18
18
  },
19
+ "./surface": {
20
+ "types": "./amtk-5-surface.d.ts",
21
+ "import": "./amtk-5-surface.js",
22
+ "default": "./amtk-5-surface.js"
23
+ },
19
24
  "./amtk-5": {
20
25
  "types": "./amtk-5.d.ts",
21
26
  "import": "./amtk-5.js",
@@ -31,20 +36,20 @@
31
36
  "test": "tsc --project tsconfig.json"
32
37
  },
33
38
  "dependencies": {
34
- "@girs/gjs": "^4.2.0",
35
- "@girs/gtk-3.0": "^4.2.0",
36
- "@girs/xlib-2.0": "^4.2.0",
37
- "@girs/gdk-3.0": "^4.2.0",
38
- "@girs/cairo-1.0": "^4.2.0",
39
- "@girs/gobject-2.0": "^4.2.0",
40
- "@girs/glib-2.0": "^4.2.0",
41
- "@girs/pango-1.0": "^4.2.0",
42
- "@girs/harfbuzz-0.0": "^4.2.0",
43
- "@girs/freetype2-2.0": "^4.2.0",
44
- "@girs/gio-2.0": "^4.2.0",
45
- "@girs/gmodule-2.0": "^4.2.0",
46
- "@girs/gdkpixbuf-2.0": "^4.2.0",
47
- "@girs/atk-1.0": "^4.2.0" },
39
+ "@girs/gjs": "^4.3.0",
40
+ "@girs/gtk-3.0": "^4.3.0",
41
+ "@girs/xlib-2.0": "^4.3.0",
42
+ "@girs/gdk-3.0": "^4.3.0",
43
+ "@girs/cairo-1.0": "^4.3.0",
44
+ "@girs/gobject-2.0": "^4.3.0",
45
+ "@girs/glib-2.0": "^4.3.0",
46
+ "@girs/pango-1.0": "^4.3.0",
47
+ "@girs/harfbuzz-0.0": "^4.3.0",
48
+ "@girs/freetype2-2.0": "^4.3.0",
49
+ "@girs/gio-2.0": "^4.3.0",
50
+ "@girs/gmodule-2.0": "^4.3.0",
51
+ "@girs/gdkpixbuf-2.0": "^4.3.0",
52
+ "@girs/atk-1.0": "^4.3.0" },
48
53
  "devDependencies": {
49
54
  "typescript": "*"
50
55
  },
package/tsconfig.json CHANGED
@@ -62,7 +62,7 @@
62
62
  ]
63
63
  }
64
64
  },
65
- "include": ["./amtk-5.d.ts"]
65
+ "include": ["./amtk-5.d.ts","./amtk-5-surface.d.ts"]
66
66
  }
67
67
 
68
68