@girs/gjs 3.0.0-beta.12
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 +30 -0
- package/ambient.d.ts +2857 -0
- package/gjs.cjs +4 -0
- package/gjs.d.cts +2146 -0
- package/gjs.d.ts +2146 -0
- package/gjs.js +4 -0
- package/package.json +449 -0
- package/tsconfig.doc.json +19 -0
package/ambient.d.ts
ADDED
|
@@ -0,0 +1,2857 @@
|
|
|
1
|
+
// https://www.typescriptlang.org/docs/handbook/modules.html#ambient-modules
|
|
2
|
+
// https://stackoverflow.com/questions/45099605/ambient-declaration-with-an-imported-type-in-typescript
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare module 'gi://Accounts?version=1.0' {
|
|
6
|
+
import Accounts10 from '@girs/accounts-1.0';
|
|
7
|
+
export default Accounts10;
|
|
8
|
+
}
|
|
9
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
10
|
+
declare module 'gi://Accounts' {
|
|
11
|
+
import Accounts10 from '@girs/accounts-1.0';
|
|
12
|
+
export default Accounts10;
|
|
13
|
+
}
|
|
14
|
+
declare module 'gi://AccountsService?version=1.0' {
|
|
15
|
+
import AccountsService10 from '@girs/accountsservice-1.0';
|
|
16
|
+
export default AccountsService10;
|
|
17
|
+
}
|
|
18
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
19
|
+
declare module 'gi://AccountsService' {
|
|
20
|
+
import AccountsService10 from '@girs/accountsservice-1.0';
|
|
21
|
+
export default AccountsService10;
|
|
22
|
+
}
|
|
23
|
+
declare module 'gi://Adw?version=1' {
|
|
24
|
+
import Adw1 from '@girs/adw-1';
|
|
25
|
+
export default Adw1;
|
|
26
|
+
}
|
|
27
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
28
|
+
declare module 'gi://Adw' {
|
|
29
|
+
import Adw1 from '@girs/adw-1';
|
|
30
|
+
export default Adw1;
|
|
31
|
+
}
|
|
32
|
+
declare module 'gi://Amtk?version=4' {
|
|
33
|
+
import Amtk4 from '@girs/amtk-4';
|
|
34
|
+
export default Amtk4;
|
|
35
|
+
}
|
|
36
|
+
declare module 'gi://Amtk?version=5' {
|
|
37
|
+
import Amtk5 from '@girs/amtk-5';
|
|
38
|
+
export default Amtk5;
|
|
39
|
+
}
|
|
40
|
+
declare module 'gi://Anjuta?version=3.0' {
|
|
41
|
+
import Anjuta30 from '@girs/anjuta-3.0';
|
|
42
|
+
export default Anjuta30;
|
|
43
|
+
}
|
|
44
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
45
|
+
declare module 'gi://Anjuta' {
|
|
46
|
+
import Anjuta30 from '@girs/anjuta-3.0';
|
|
47
|
+
export default Anjuta30;
|
|
48
|
+
}
|
|
49
|
+
declare module 'gi://Anthy?version=9000' {
|
|
50
|
+
import Anthy9000 from '@girs/anthy-9000';
|
|
51
|
+
export default Anthy9000;
|
|
52
|
+
}
|
|
53
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
54
|
+
declare module 'gi://Anthy' {
|
|
55
|
+
import Anthy9000 from '@girs/anthy-9000';
|
|
56
|
+
export default Anthy9000;
|
|
57
|
+
}
|
|
58
|
+
declare module 'gi://AppStream?version=1.0' {
|
|
59
|
+
import AppStream10 from '@girs/appstream-1.0';
|
|
60
|
+
export default AppStream10;
|
|
61
|
+
}
|
|
62
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
63
|
+
declare module 'gi://AppStream' {
|
|
64
|
+
import AppStream10 from '@girs/appstream-1.0';
|
|
65
|
+
export default AppStream10;
|
|
66
|
+
}
|
|
67
|
+
declare module 'gi://AppStreamBuilder?version=1.0' {
|
|
68
|
+
import AppStreamBuilder10 from '@girs/appstreambuilder-1.0';
|
|
69
|
+
export default AppStreamBuilder10;
|
|
70
|
+
}
|
|
71
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
72
|
+
declare module 'gi://AppStreamBuilder' {
|
|
73
|
+
import AppStreamBuilder10 from '@girs/appstreambuilder-1.0';
|
|
74
|
+
export default AppStreamBuilder10;
|
|
75
|
+
}
|
|
76
|
+
declare module 'gi://AppStreamGlib?version=1.0' {
|
|
77
|
+
import AppStreamGlib10 from '@girs/appstreamglib-1.0';
|
|
78
|
+
export default AppStreamGlib10;
|
|
79
|
+
}
|
|
80
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
81
|
+
declare module 'gi://AppStreamGlib' {
|
|
82
|
+
import AppStreamGlib10 from '@girs/appstreamglib-1.0';
|
|
83
|
+
export default AppStreamGlib10;
|
|
84
|
+
}
|
|
85
|
+
declare module 'gi://Arrow?version=1.0' {
|
|
86
|
+
import Arrow10 from '@girs/arrow-1.0';
|
|
87
|
+
export default Arrow10;
|
|
88
|
+
}
|
|
89
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
90
|
+
declare module 'gi://Arrow' {
|
|
91
|
+
import Arrow10 from '@girs/arrow-1.0';
|
|
92
|
+
export default Arrow10;
|
|
93
|
+
}
|
|
94
|
+
declare module 'gi://ArrowDataset?version=1.0' {
|
|
95
|
+
import ArrowDataset10 from '@girs/arrowdataset-1.0';
|
|
96
|
+
export default ArrowDataset10;
|
|
97
|
+
}
|
|
98
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
99
|
+
declare module 'gi://ArrowDataset' {
|
|
100
|
+
import ArrowDataset10 from '@girs/arrowdataset-1.0';
|
|
101
|
+
export default ArrowDataset10;
|
|
102
|
+
}
|
|
103
|
+
declare module 'gi://ArrowFlight?version=1.0' {
|
|
104
|
+
import ArrowFlight10 from '@girs/arrowflight-1.0';
|
|
105
|
+
export default ArrowFlight10;
|
|
106
|
+
}
|
|
107
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
108
|
+
declare module 'gi://ArrowFlight' {
|
|
109
|
+
import ArrowFlight10 from '@girs/arrowflight-1.0';
|
|
110
|
+
export default ArrowFlight10;
|
|
111
|
+
}
|
|
112
|
+
declare module 'gi://Atk?version=1.0' {
|
|
113
|
+
import Atk10 from '@girs/atk-1.0';
|
|
114
|
+
export default Atk10;
|
|
115
|
+
}
|
|
116
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
117
|
+
declare module 'gi://Atk' {
|
|
118
|
+
import Atk10 from '@girs/atk-1.0';
|
|
119
|
+
export default Atk10;
|
|
120
|
+
}
|
|
121
|
+
declare module 'gi://Atspi?version=2.0' {
|
|
122
|
+
import Atspi20 from '@girs/atspi-2.0';
|
|
123
|
+
export default Atspi20;
|
|
124
|
+
}
|
|
125
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
126
|
+
declare module 'gi://Atspi' {
|
|
127
|
+
import Atspi20 from '@girs/atspi-2.0';
|
|
128
|
+
export default Atspi20;
|
|
129
|
+
}
|
|
130
|
+
declare module 'gi://Babl?version=0.1' {
|
|
131
|
+
import Babl01 from '@girs/babl-0.1';
|
|
132
|
+
export default Babl01;
|
|
133
|
+
}
|
|
134
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
135
|
+
declare module 'gi://Babl' {
|
|
136
|
+
import Babl01 from '@girs/babl-0.1';
|
|
137
|
+
export default Babl01;
|
|
138
|
+
}
|
|
139
|
+
declare module 'gi://Bamf?version=3' {
|
|
140
|
+
import Bamf3 from '@girs/bamf-3';
|
|
141
|
+
export default Bamf3;
|
|
142
|
+
}
|
|
143
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
144
|
+
declare module 'gi://Bamf' {
|
|
145
|
+
import Bamf3 from '@girs/bamf-3';
|
|
146
|
+
export default Bamf3;
|
|
147
|
+
}
|
|
148
|
+
declare module 'gi://Builder?version=1.0' {
|
|
149
|
+
import Builder10 from '@girs/builder-1.0';
|
|
150
|
+
export default Builder10;
|
|
151
|
+
}
|
|
152
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
153
|
+
declare module 'gi://Builder' {
|
|
154
|
+
import Builder10 from '@girs/builder-1.0';
|
|
155
|
+
export default Builder10;
|
|
156
|
+
}
|
|
157
|
+
declare module 'gi://Bump?version=0.1' {
|
|
158
|
+
import Bump01 from '@girs/bump-0.1';
|
|
159
|
+
export default Bump01;
|
|
160
|
+
}
|
|
161
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
162
|
+
declare module 'gi://Bump' {
|
|
163
|
+
import Bump01 from '@girs/bump-0.1';
|
|
164
|
+
export default Bump01;
|
|
165
|
+
}
|
|
166
|
+
declare module 'gi://Cally?version=1.0' {
|
|
167
|
+
import Cally10 from '@girs/cally-1.0';
|
|
168
|
+
export default Cally10;
|
|
169
|
+
}
|
|
170
|
+
declare module 'gi://Cally?version=11' {
|
|
171
|
+
import Cally11 from '@girs/cally-11';
|
|
172
|
+
export default Cally11;
|
|
173
|
+
}
|
|
174
|
+
declare module 'gi://Camel?version=1.2' {
|
|
175
|
+
import Camel12 from '@girs/camel-1.2';
|
|
176
|
+
export default Camel12;
|
|
177
|
+
}
|
|
178
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
179
|
+
declare module 'gi://Camel' {
|
|
180
|
+
import Camel12 from '@girs/camel-1.2';
|
|
181
|
+
export default Camel12;
|
|
182
|
+
}
|
|
183
|
+
declare module 'gi://Caribou?version=1.0' {
|
|
184
|
+
import Caribou10 from '@girs/caribou-1.0';
|
|
185
|
+
export default Caribou10;
|
|
186
|
+
}
|
|
187
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
188
|
+
declare module 'gi://Caribou' {
|
|
189
|
+
import Caribou10 from '@girs/caribou-1.0';
|
|
190
|
+
export default Caribou10;
|
|
191
|
+
}
|
|
192
|
+
declare module 'gi://Champlain?version=0.12' {
|
|
193
|
+
import Champlain012 from '@girs/champlain-0.12';
|
|
194
|
+
export default Champlain012;
|
|
195
|
+
}
|
|
196
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
197
|
+
declare module 'gi://Champlain' {
|
|
198
|
+
import Champlain012 from '@girs/champlain-0.12';
|
|
199
|
+
export default Champlain012;
|
|
200
|
+
}
|
|
201
|
+
declare module 'gi://Cheese?version=3.0' {
|
|
202
|
+
import Cheese30 from '@girs/cheese-3.0';
|
|
203
|
+
export default Cheese30;
|
|
204
|
+
}
|
|
205
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
206
|
+
declare module 'gi://Cheese' {
|
|
207
|
+
import Cheese30 from '@girs/cheese-3.0';
|
|
208
|
+
export default Cheese30;
|
|
209
|
+
}
|
|
210
|
+
declare module 'gi://Clutter?version=1.0' {
|
|
211
|
+
import Clutter10 from '@girs/clutter-1.0';
|
|
212
|
+
export default Clutter10;
|
|
213
|
+
}
|
|
214
|
+
declare module 'gi://Clutter?version=11' {
|
|
215
|
+
import Clutter11 from '@girs/clutter-11';
|
|
216
|
+
export default Clutter11;
|
|
217
|
+
}
|
|
218
|
+
declare module 'gi://ClutterGdk?version=1.0' {
|
|
219
|
+
import ClutterGdk10 from '@girs/cluttergdk-1.0';
|
|
220
|
+
export default ClutterGdk10;
|
|
221
|
+
}
|
|
222
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
223
|
+
declare module 'gi://ClutterGdk' {
|
|
224
|
+
import ClutterGdk10 from '@girs/cluttergdk-1.0';
|
|
225
|
+
export default ClutterGdk10;
|
|
226
|
+
}
|
|
227
|
+
declare module 'gi://ClutterGst?version=1.0' {
|
|
228
|
+
import ClutterGst10 from '@girs/cluttergst-1.0';
|
|
229
|
+
export default ClutterGst10;
|
|
230
|
+
}
|
|
231
|
+
declare module 'gi://ClutterGst?version=2.0' {
|
|
232
|
+
import ClutterGst20 from '@girs/cluttergst-2.0';
|
|
233
|
+
export default ClutterGst20;
|
|
234
|
+
}
|
|
235
|
+
declare module 'gi://ClutterGst?version=3.0' {
|
|
236
|
+
import ClutterGst30 from '@girs/cluttergst-3.0';
|
|
237
|
+
export default ClutterGst30;
|
|
238
|
+
}
|
|
239
|
+
declare module 'gi://ClutterX11?version=1.0' {
|
|
240
|
+
import ClutterX1110 from '@girs/clutterx11-1.0';
|
|
241
|
+
export default ClutterX1110;
|
|
242
|
+
}
|
|
243
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
244
|
+
declare module 'gi://ClutterX11' {
|
|
245
|
+
import ClutterX1110 from '@girs/clutterx11-1.0';
|
|
246
|
+
export default ClutterX1110;
|
|
247
|
+
}
|
|
248
|
+
declare module 'gi://Cogl?version=1.0' {
|
|
249
|
+
import Cogl10 from '@girs/cogl-1.0';
|
|
250
|
+
export default Cogl10;
|
|
251
|
+
}
|
|
252
|
+
declare module 'gi://Cogl?version=2.0' {
|
|
253
|
+
import Cogl20 from '@girs/cogl-2.0';
|
|
254
|
+
export default Cogl20;
|
|
255
|
+
}
|
|
256
|
+
declare module 'gi://Cogl?version=11' {
|
|
257
|
+
import Cogl11 from '@girs/cogl-11';
|
|
258
|
+
export default Cogl11;
|
|
259
|
+
}
|
|
260
|
+
declare module 'gi://CoglGst?version=2.0' {
|
|
261
|
+
import CoglGst20 from '@girs/coglgst-2.0';
|
|
262
|
+
export default CoglGst20;
|
|
263
|
+
}
|
|
264
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
265
|
+
declare module 'gi://CoglGst' {
|
|
266
|
+
import CoglGst20 from '@girs/coglgst-2.0';
|
|
267
|
+
export default CoglGst20;
|
|
268
|
+
}
|
|
269
|
+
declare module 'gi://CoglPango?version=1.0' {
|
|
270
|
+
import CoglPango10 from '@girs/coglpango-1.0';
|
|
271
|
+
export default CoglPango10;
|
|
272
|
+
}
|
|
273
|
+
declare module 'gi://CoglPango?version=2.0' {
|
|
274
|
+
import CoglPango20 from '@girs/coglpango-2.0';
|
|
275
|
+
export default CoglPango20;
|
|
276
|
+
}
|
|
277
|
+
declare module 'gi://CoglPango?version=11' {
|
|
278
|
+
import CoglPango11 from '@girs/coglpango-11';
|
|
279
|
+
export default CoglPango11;
|
|
280
|
+
}
|
|
281
|
+
declare module 'gi://ColorHug?version=1.0' {
|
|
282
|
+
import ColorHug10 from '@girs/colorhug-1.0';
|
|
283
|
+
export default ColorHug10;
|
|
284
|
+
}
|
|
285
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
286
|
+
declare module 'gi://ColorHug' {
|
|
287
|
+
import ColorHug10 from '@girs/colorhug-1.0';
|
|
288
|
+
export default ColorHug10;
|
|
289
|
+
}
|
|
290
|
+
declare module 'gi://Colord?version=1.0' {
|
|
291
|
+
import Colord10 from '@girs/colord-1.0';
|
|
292
|
+
export default Colord10;
|
|
293
|
+
}
|
|
294
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
295
|
+
declare module 'gi://Colord' {
|
|
296
|
+
import Colord10 from '@girs/colord-1.0';
|
|
297
|
+
export default Colord10;
|
|
298
|
+
}
|
|
299
|
+
declare module 'gi://ColordGtk?version=1.0' {
|
|
300
|
+
import ColordGtk10 from '@girs/colordgtk-1.0';
|
|
301
|
+
export default ColordGtk10;
|
|
302
|
+
}
|
|
303
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
304
|
+
declare module 'gi://ColordGtk' {
|
|
305
|
+
import ColordGtk10 from '@girs/colordgtk-1.0';
|
|
306
|
+
export default ColordGtk10;
|
|
307
|
+
}
|
|
308
|
+
declare module 'gi://DBus?version=1.0' {
|
|
309
|
+
import DBus10 from '@girs/dbus-1.0';
|
|
310
|
+
export default DBus10;
|
|
311
|
+
}
|
|
312
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
313
|
+
declare module 'gi://DBus' {
|
|
314
|
+
import DBus10 from '@girs/dbus-1.0';
|
|
315
|
+
export default DBus10;
|
|
316
|
+
}
|
|
317
|
+
declare module 'gi://DBusGLib?version=1.0' {
|
|
318
|
+
import DBusGLib10 from '@girs/dbusglib-1.0';
|
|
319
|
+
export default DBusGLib10;
|
|
320
|
+
}
|
|
321
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
322
|
+
declare module 'gi://DBusGLib' {
|
|
323
|
+
import DBusGLib10 from '@girs/dbusglib-1.0';
|
|
324
|
+
export default DBusGLib10;
|
|
325
|
+
}
|
|
326
|
+
declare module 'gi://DMAP?version=3.0' {
|
|
327
|
+
import DMAP30 from '@girs/dmap-3.0';
|
|
328
|
+
export default DMAP30;
|
|
329
|
+
}
|
|
330
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
331
|
+
declare module 'gi://DMAP' {
|
|
332
|
+
import DMAP30 from '@girs/dmap-3.0';
|
|
333
|
+
export default DMAP30;
|
|
334
|
+
}
|
|
335
|
+
declare module 'gi://Dazzle?version=1.0' {
|
|
336
|
+
import Dazzle10 from '@girs/dazzle-1.0';
|
|
337
|
+
export default Dazzle10;
|
|
338
|
+
}
|
|
339
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
340
|
+
declare module 'gi://Dazzle' {
|
|
341
|
+
import Dazzle10 from '@girs/dazzle-1.0';
|
|
342
|
+
export default Dazzle10;
|
|
343
|
+
}
|
|
344
|
+
declare module 'gi://Dbusmenu?version=0.4' {
|
|
345
|
+
import Dbusmenu04 from '@girs/dbusmenu-0.4';
|
|
346
|
+
export default Dbusmenu04;
|
|
347
|
+
}
|
|
348
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
349
|
+
declare module 'gi://Dbusmenu' {
|
|
350
|
+
import Dbusmenu04 from '@girs/dbusmenu-0.4';
|
|
351
|
+
export default Dbusmenu04;
|
|
352
|
+
}
|
|
353
|
+
declare module 'gi://DbusmenuGtk?version=0.4' {
|
|
354
|
+
import DbusmenuGtk04 from '@girs/dbusmenugtk-0.4';
|
|
355
|
+
export default DbusmenuGtk04;
|
|
356
|
+
}
|
|
357
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
358
|
+
declare module 'gi://DbusmenuGtk' {
|
|
359
|
+
import DbusmenuGtk04 from '@girs/dbusmenugtk-0.4';
|
|
360
|
+
export default DbusmenuGtk04;
|
|
361
|
+
}
|
|
362
|
+
declare module 'gi://DbusmenuGtk3?version=0.4' {
|
|
363
|
+
import DbusmenuGtk304 from '@girs/dbusmenugtk3-0.4';
|
|
364
|
+
export default DbusmenuGtk304;
|
|
365
|
+
}
|
|
366
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
367
|
+
declare module 'gi://DbusmenuGtk3' {
|
|
368
|
+
import DbusmenuGtk304 from '@girs/dbusmenugtk3-0.4';
|
|
369
|
+
export default DbusmenuGtk304;
|
|
370
|
+
}
|
|
371
|
+
declare module 'gi://Dee?version=1.0' {
|
|
372
|
+
import Dee10 from '@girs/dee-1.0';
|
|
373
|
+
export default Dee10;
|
|
374
|
+
}
|
|
375
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
376
|
+
declare module 'gi://Dee' {
|
|
377
|
+
import Dee10 from '@girs/dee-1.0';
|
|
378
|
+
export default Dee10;
|
|
379
|
+
}
|
|
380
|
+
declare module 'gi://Devhelp?version=3.0' {
|
|
381
|
+
import Devhelp30 from '@girs/devhelp-3.0';
|
|
382
|
+
export default Devhelp30;
|
|
383
|
+
}
|
|
384
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
385
|
+
declare module 'gi://Devhelp' {
|
|
386
|
+
import Devhelp30 from '@girs/devhelp-3.0';
|
|
387
|
+
export default Devhelp30;
|
|
388
|
+
}
|
|
389
|
+
declare module 'gi://EBackend?version=1.2' {
|
|
390
|
+
import EBackend12 from '@girs/ebackend-1.2';
|
|
391
|
+
export default EBackend12;
|
|
392
|
+
}
|
|
393
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
394
|
+
declare module 'gi://EBackend' {
|
|
395
|
+
import EBackend12 from '@girs/ebackend-1.2';
|
|
396
|
+
export default EBackend12;
|
|
397
|
+
}
|
|
398
|
+
declare module 'gi://EBook?version=1.2' {
|
|
399
|
+
import EBook12 from '@girs/ebook-1.2';
|
|
400
|
+
export default EBook12;
|
|
401
|
+
}
|
|
402
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
403
|
+
declare module 'gi://EBook' {
|
|
404
|
+
import EBook12 from '@girs/ebook-1.2';
|
|
405
|
+
export default EBook12;
|
|
406
|
+
}
|
|
407
|
+
declare module 'gi://EBookContacts?version=1.2' {
|
|
408
|
+
import EBookContacts12 from '@girs/ebookcontacts-1.2';
|
|
409
|
+
export default EBookContacts12;
|
|
410
|
+
}
|
|
411
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
412
|
+
declare module 'gi://EBookContacts' {
|
|
413
|
+
import EBookContacts12 from '@girs/ebookcontacts-1.2';
|
|
414
|
+
export default EBookContacts12;
|
|
415
|
+
}
|
|
416
|
+
declare module 'gi://ECal?version=2.0' {
|
|
417
|
+
import ECal20 from '@girs/ecal-2.0';
|
|
418
|
+
export default ECal20;
|
|
419
|
+
}
|
|
420
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
421
|
+
declare module 'gi://ECal' {
|
|
422
|
+
import ECal20 from '@girs/ecal-2.0';
|
|
423
|
+
export default ECal20;
|
|
424
|
+
}
|
|
425
|
+
declare module 'gi://ECalendar?version=1.2' {
|
|
426
|
+
import ECalendar12 from '@girs/ecalendar-1.2';
|
|
427
|
+
export default ECalendar12;
|
|
428
|
+
}
|
|
429
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
430
|
+
declare module 'gi://ECalendar' {
|
|
431
|
+
import ECalendar12 from '@girs/ecalendar-1.2';
|
|
432
|
+
export default ECalendar12;
|
|
433
|
+
}
|
|
434
|
+
declare module 'gi://EDataBook?version=1.2' {
|
|
435
|
+
import EDataBook12 from '@girs/edatabook-1.2';
|
|
436
|
+
export default EDataBook12;
|
|
437
|
+
}
|
|
438
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
439
|
+
declare module 'gi://EDataBook' {
|
|
440
|
+
import EDataBook12 from '@girs/edatabook-1.2';
|
|
441
|
+
export default EDataBook12;
|
|
442
|
+
}
|
|
443
|
+
declare module 'gi://EDataCal?version=2.0' {
|
|
444
|
+
import EDataCal20 from '@girs/edatacal-2.0';
|
|
445
|
+
export default EDataCal20;
|
|
446
|
+
}
|
|
447
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
448
|
+
declare module 'gi://EDataCal' {
|
|
449
|
+
import EDataCal20 from '@girs/edatacal-2.0';
|
|
450
|
+
export default EDataCal20;
|
|
451
|
+
}
|
|
452
|
+
declare module 'gi://EDataServer?version=1.2' {
|
|
453
|
+
import EDataServer12 from '@girs/edataserver-1.2';
|
|
454
|
+
export default EDataServer12;
|
|
455
|
+
}
|
|
456
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
457
|
+
declare module 'gi://EDataServer' {
|
|
458
|
+
import EDataServer12 from '@girs/edataserver-1.2';
|
|
459
|
+
export default EDataServer12;
|
|
460
|
+
}
|
|
461
|
+
declare module 'gi://EDataServerUI?version=1.2' {
|
|
462
|
+
import EDataServerUI12 from '@girs/edataserverui-1.2';
|
|
463
|
+
export default EDataServerUI12;
|
|
464
|
+
}
|
|
465
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
466
|
+
declare module 'gi://EDataServerUI' {
|
|
467
|
+
import EDataServerUI12 from '@girs/edataserverui-1.2';
|
|
468
|
+
export default EDataServerUI12;
|
|
469
|
+
}
|
|
470
|
+
declare module 'gi://EDataServerUI4?version=1.0' {
|
|
471
|
+
import EDataServerUI410 from '@girs/edataserverui4-1.0';
|
|
472
|
+
export default EDataServerUI410;
|
|
473
|
+
}
|
|
474
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
475
|
+
declare module 'gi://EDataServerUI4' {
|
|
476
|
+
import EDataServerUI410 from '@girs/edataserverui4-1.0';
|
|
477
|
+
export default EDataServerUI410;
|
|
478
|
+
}
|
|
479
|
+
declare module 'gi://Egg?version=1.0' {
|
|
480
|
+
import Egg10 from '@girs/egg-1.0';
|
|
481
|
+
export default Egg10;
|
|
482
|
+
}
|
|
483
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
484
|
+
declare module 'gi://Egg' {
|
|
485
|
+
import Egg10 from '@girs/egg-1.0';
|
|
486
|
+
export default Egg10;
|
|
487
|
+
}
|
|
488
|
+
declare module 'gi://Eog?version=3.0' {
|
|
489
|
+
import Eog30 from '@girs/eog-3.0';
|
|
490
|
+
export default Eog30;
|
|
491
|
+
}
|
|
492
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
493
|
+
declare module 'gi://Eog' {
|
|
494
|
+
import Eog30 from '@girs/eog-3.0';
|
|
495
|
+
export default Eog30;
|
|
496
|
+
}
|
|
497
|
+
declare module 'gi://Epc?version=1.0' {
|
|
498
|
+
import Epc10 from '@girs/epc-1.0';
|
|
499
|
+
export default Epc10;
|
|
500
|
+
}
|
|
501
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
502
|
+
declare module 'gi://Epc' {
|
|
503
|
+
import Epc10 from '@girs/epc-1.0';
|
|
504
|
+
export default Epc10;
|
|
505
|
+
}
|
|
506
|
+
declare module 'gi://EpcUi?version=1.0' {
|
|
507
|
+
import EpcUi10 from '@girs/epcui-1.0';
|
|
508
|
+
export default EpcUi10;
|
|
509
|
+
}
|
|
510
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
511
|
+
declare module 'gi://EpcUi' {
|
|
512
|
+
import EpcUi10 from '@girs/epcui-1.0';
|
|
513
|
+
export default EpcUi10;
|
|
514
|
+
}
|
|
515
|
+
declare module 'gi://EvinceDocument?version=3.0' {
|
|
516
|
+
import EvinceDocument30 from '@girs/evincedocument-3.0';
|
|
517
|
+
export default EvinceDocument30;
|
|
518
|
+
}
|
|
519
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
520
|
+
declare module 'gi://EvinceDocument' {
|
|
521
|
+
import EvinceDocument30 from '@girs/evincedocument-3.0';
|
|
522
|
+
export default EvinceDocument30;
|
|
523
|
+
}
|
|
524
|
+
declare module 'gi://EvinceView?version=3.0' {
|
|
525
|
+
import EvinceView30 from '@girs/evinceview-3.0';
|
|
526
|
+
export default EvinceView30;
|
|
527
|
+
}
|
|
528
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
529
|
+
declare module 'gi://EvinceView' {
|
|
530
|
+
import EvinceView30 from '@girs/evinceview-3.0';
|
|
531
|
+
export default EvinceView30;
|
|
532
|
+
}
|
|
533
|
+
declare module 'gi://Farstream?version=0.1' {
|
|
534
|
+
import Farstream01 from '@girs/farstream-0.1';
|
|
535
|
+
export default Farstream01;
|
|
536
|
+
}
|
|
537
|
+
declare module 'gi://Farstream?version=0.2' {
|
|
538
|
+
import Farstream02 from '@girs/farstream-0.2';
|
|
539
|
+
export default Farstream02;
|
|
540
|
+
}
|
|
541
|
+
declare module 'gi://Flatpak?version=1.0' {
|
|
542
|
+
import Flatpak10 from '@girs/flatpak-1.0';
|
|
543
|
+
export default Flatpak10;
|
|
544
|
+
}
|
|
545
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
546
|
+
declare module 'gi://Flatpak' {
|
|
547
|
+
import Flatpak10 from '@girs/flatpak-1.0';
|
|
548
|
+
export default Flatpak10;
|
|
549
|
+
}
|
|
550
|
+
declare module 'gi://Folks?version=0.6' {
|
|
551
|
+
import Folks06 from '@girs/folks-0.6';
|
|
552
|
+
export default Folks06;
|
|
553
|
+
}
|
|
554
|
+
declare module 'gi://Folks?version=0.7' {
|
|
555
|
+
import Folks07 from '@girs/folks-0.7';
|
|
556
|
+
export default Folks07;
|
|
557
|
+
}
|
|
558
|
+
declare module 'gi://FolksDummy?version=0.6' {
|
|
559
|
+
import FolksDummy06 from '@girs/folksdummy-0.6';
|
|
560
|
+
export default FolksDummy06;
|
|
561
|
+
}
|
|
562
|
+
declare module 'gi://FolksDummy?version=0.7' {
|
|
563
|
+
import FolksDummy07 from '@girs/folksdummy-0.7';
|
|
564
|
+
export default FolksDummy07;
|
|
565
|
+
}
|
|
566
|
+
declare module 'gi://FolksEds?version=0.6' {
|
|
567
|
+
import FolksEds06 from '@girs/folkseds-0.6';
|
|
568
|
+
export default FolksEds06;
|
|
569
|
+
}
|
|
570
|
+
declare module 'gi://FolksEds?version=0.7' {
|
|
571
|
+
import FolksEds07 from '@girs/folkseds-0.7';
|
|
572
|
+
export default FolksEds07;
|
|
573
|
+
}
|
|
574
|
+
declare module 'gi://FolksLibsocialweb?version=0.6' {
|
|
575
|
+
import FolksLibsocialweb06 from '@girs/folkslibsocialweb-0.6';
|
|
576
|
+
export default FolksLibsocialweb06;
|
|
577
|
+
}
|
|
578
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
579
|
+
declare module 'gi://FolksLibsocialweb' {
|
|
580
|
+
import FolksLibsocialweb06 from '@girs/folkslibsocialweb-0.6';
|
|
581
|
+
export default FolksLibsocialweb06;
|
|
582
|
+
}
|
|
583
|
+
declare module 'gi://FolksTelepathy?version=0.6' {
|
|
584
|
+
import FolksTelepathy06 from '@girs/folkstelepathy-0.6';
|
|
585
|
+
export default FolksTelepathy06;
|
|
586
|
+
}
|
|
587
|
+
declare module 'gi://FolksTelepathy?version=0.7' {
|
|
588
|
+
import FolksTelepathy07 from '@girs/folkstelepathy-0.7';
|
|
589
|
+
export default FolksTelepathy07;
|
|
590
|
+
}
|
|
591
|
+
declare module 'gi://Fwupd?version=2.0' {
|
|
592
|
+
import Fwupd20 from '@girs/fwupd-2.0';
|
|
593
|
+
export default Fwupd20;
|
|
594
|
+
}
|
|
595
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
596
|
+
declare module 'gi://Fwupd' {
|
|
597
|
+
import Fwupd20 from '@girs/fwupd-2.0';
|
|
598
|
+
export default Fwupd20;
|
|
599
|
+
}
|
|
600
|
+
declare module 'gi://GCab?version=1.0' {
|
|
601
|
+
import GCab10 from '@girs/gcab-1.0';
|
|
602
|
+
export default GCab10;
|
|
603
|
+
}
|
|
604
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
605
|
+
declare module 'gi://GCab' {
|
|
606
|
+
import GCab10 from '@girs/gcab-1.0';
|
|
607
|
+
export default GCab10;
|
|
608
|
+
}
|
|
609
|
+
declare module 'gi://GCalc?version=1' {
|
|
610
|
+
import GCalc1 from '@girs/gcalc-1';
|
|
611
|
+
export default GCalc1;
|
|
612
|
+
}
|
|
613
|
+
declare module 'gi://GCalc?version=2' {
|
|
614
|
+
import GCalc2 from '@girs/gcalc-2';
|
|
615
|
+
export default GCalc2;
|
|
616
|
+
}
|
|
617
|
+
declare module 'gi://GConf?version=2.0' {
|
|
618
|
+
import GConf20 from '@girs/gconf-2.0';
|
|
619
|
+
export default GConf20;
|
|
620
|
+
}
|
|
621
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
622
|
+
declare module 'gi://GConf' {
|
|
623
|
+
import GConf20 from '@girs/gconf-2.0';
|
|
624
|
+
export default GConf20;
|
|
625
|
+
}
|
|
626
|
+
declare module 'gi://GData?version=0.0' {
|
|
627
|
+
import GData00 from '@girs/gdata-0.0';
|
|
628
|
+
export default GData00;
|
|
629
|
+
}
|
|
630
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
631
|
+
declare module 'gi://GData' {
|
|
632
|
+
import GData00 from '@girs/gdata-0.0';
|
|
633
|
+
export default GData00;
|
|
634
|
+
}
|
|
635
|
+
declare module 'gi://GDesktopEnums?version=3.0' {
|
|
636
|
+
import GDesktopEnums30 from '@girs/gdesktopenums-3.0';
|
|
637
|
+
export default GDesktopEnums30;
|
|
638
|
+
}
|
|
639
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
640
|
+
declare module 'gi://GDesktopEnums' {
|
|
641
|
+
import GDesktopEnums30 from '@girs/gdesktopenums-3.0';
|
|
642
|
+
export default GDesktopEnums30;
|
|
643
|
+
}
|
|
644
|
+
declare module 'gi://GES?version=1.0' {
|
|
645
|
+
import GES10 from '@girs/ges-1.0';
|
|
646
|
+
export default GES10;
|
|
647
|
+
}
|
|
648
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
649
|
+
declare module 'gi://GES' {
|
|
650
|
+
import GES10 from '@girs/ges-1.0';
|
|
651
|
+
export default GES10;
|
|
652
|
+
}
|
|
653
|
+
declare module 'gi://GExiv2?version=0.10' {
|
|
654
|
+
import GExiv2010 from '@girs/gexiv2-0.10';
|
|
655
|
+
export default GExiv2010;
|
|
656
|
+
}
|
|
657
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
658
|
+
declare module 'gi://GExiv2' {
|
|
659
|
+
import GExiv2010 from '@girs/gexiv2-0.10';
|
|
660
|
+
export default GExiv2010;
|
|
661
|
+
}
|
|
662
|
+
declare module 'gi://GFBGraph?version=0.2' {
|
|
663
|
+
import GFBGraph02 from '@girs/gfbgraph-0.2';
|
|
664
|
+
export default GFBGraph02;
|
|
665
|
+
}
|
|
666
|
+
declare module 'gi://GFBGraph?version=0.3' {
|
|
667
|
+
import GFBGraph03 from '@girs/gfbgraph-0.3';
|
|
668
|
+
export default GFBGraph03;
|
|
669
|
+
}
|
|
670
|
+
declare module 'gi://GIRepository?version=2.0' {
|
|
671
|
+
import GIRepository20 from '@girs/girepository-2.0';
|
|
672
|
+
export default GIRepository20;
|
|
673
|
+
}
|
|
674
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
675
|
+
declare module 'gi://GIRepository' {
|
|
676
|
+
import GIRepository20 from '@girs/girepository-2.0';
|
|
677
|
+
export default GIRepository20;
|
|
678
|
+
}
|
|
679
|
+
declare module 'gi://GL?version=1.0' {
|
|
680
|
+
import GL10 from '@girs/gl-1.0';
|
|
681
|
+
export default GL10;
|
|
682
|
+
}
|
|
683
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
684
|
+
declare module 'gi://GL' {
|
|
685
|
+
import GL10 from '@girs/gl-1.0';
|
|
686
|
+
export default GL10;
|
|
687
|
+
}
|
|
688
|
+
declare module 'gi://GLib?version=2.0' {
|
|
689
|
+
import GLib20 from '@girs/glib-2.0';
|
|
690
|
+
export default GLib20;
|
|
691
|
+
}
|
|
692
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
693
|
+
declare module 'gi://GLib' {
|
|
694
|
+
import GLib20 from '@girs/glib-2.0';
|
|
695
|
+
export default GLib20;
|
|
696
|
+
}
|
|
697
|
+
declare module 'gi://GMenu?version=3.0' {
|
|
698
|
+
import GMenu30 from '@girs/gmenu-3.0';
|
|
699
|
+
export default GMenu30;
|
|
700
|
+
}
|
|
701
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
702
|
+
declare module 'gi://GMenu' {
|
|
703
|
+
import GMenu30 from '@girs/gmenu-3.0';
|
|
704
|
+
export default GMenu30;
|
|
705
|
+
}
|
|
706
|
+
declare module 'gi://GMime?version=3.0' {
|
|
707
|
+
import GMime30 from '@girs/gmime-3.0';
|
|
708
|
+
export default GMime30;
|
|
709
|
+
}
|
|
710
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
711
|
+
declare module 'gi://GMime' {
|
|
712
|
+
import GMime30 from '@girs/gmime-3.0';
|
|
713
|
+
export default GMime30;
|
|
714
|
+
}
|
|
715
|
+
declare module 'gi://GModule?version=2.0' {
|
|
716
|
+
import GModule20 from '@girs/gmodule-2.0';
|
|
717
|
+
export default GModule20;
|
|
718
|
+
}
|
|
719
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
720
|
+
declare module 'gi://GModule' {
|
|
721
|
+
import GModule20 from '@girs/gmodule-2.0';
|
|
722
|
+
export default GModule20;
|
|
723
|
+
}
|
|
724
|
+
declare module 'gi://GObject?version=2.0' {
|
|
725
|
+
import GObject20 from '@girs/gobject-2.0';
|
|
726
|
+
export default GObject20;
|
|
727
|
+
}
|
|
728
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
729
|
+
declare module 'gi://GObject' {
|
|
730
|
+
import GObject20 from '@girs/gobject-2.0';
|
|
731
|
+
export default GObject20;
|
|
732
|
+
}
|
|
733
|
+
declare module 'gi://GSSDP?version=1.0' {
|
|
734
|
+
import GSSDP10 from '@girs/gssdp-1.0';
|
|
735
|
+
export default GSSDP10;
|
|
736
|
+
}
|
|
737
|
+
declare module 'gi://GSSDP?version=1.2' {
|
|
738
|
+
import GSSDP12 from '@girs/gssdp-1.2';
|
|
739
|
+
export default GSSDP12;
|
|
740
|
+
}
|
|
741
|
+
declare module 'gi://GSSDP?version=1.6' {
|
|
742
|
+
import GSSDP16 from '@girs/gssdp-1.6';
|
|
743
|
+
export default GSSDP16;
|
|
744
|
+
}
|
|
745
|
+
declare module 'gi://GSignond?version=1.0' {
|
|
746
|
+
import GSignond10 from '@girs/gsignond-1.0';
|
|
747
|
+
export default GSignond10;
|
|
748
|
+
}
|
|
749
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
750
|
+
declare module 'gi://GSignond' {
|
|
751
|
+
import GSignond10 from '@girs/gsignond-1.0';
|
|
752
|
+
export default GSignond10;
|
|
753
|
+
}
|
|
754
|
+
declare module 'gi://GSound?version=1.0' {
|
|
755
|
+
import GSound10 from '@girs/gsound-1.0';
|
|
756
|
+
export default GSound10;
|
|
757
|
+
}
|
|
758
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
759
|
+
declare module 'gi://GSound' {
|
|
760
|
+
import GSound10 from '@girs/gsound-1.0';
|
|
761
|
+
export default GSound10;
|
|
762
|
+
}
|
|
763
|
+
declare module 'gi://GSystem?version=1.0' {
|
|
764
|
+
import GSystem10 from '@girs/gsystem-1.0';
|
|
765
|
+
export default GSystem10;
|
|
766
|
+
}
|
|
767
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
768
|
+
declare module 'gi://GSystem' {
|
|
769
|
+
import GSystem10 from '@girs/gsystem-1.0';
|
|
770
|
+
export default GSystem10;
|
|
771
|
+
}
|
|
772
|
+
declare module 'gi://GTop?version=2.0' {
|
|
773
|
+
import GTop20 from '@girs/gtop-2.0';
|
|
774
|
+
export default GTop20;
|
|
775
|
+
}
|
|
776
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
777
|
+
declare module 'gi://GTop' {
|
|
778
|
+
import GTop20 from '@girs/gtop-2.0';
|
|
779
|
+
export default GTop20;
|
|
780
|
+
}
|
|
781
|
+
declare module 'gi://GUPnP?version=1.0' {
|
|
782
|
+
import GUPnP10 from '@girs/gupnp-1.0';
|
|
783
|
+
export default GUPnP10;
|
|
784
|
+
}
|
|
785
|
+
declare module 'gi://GUPnP?version=1.2' {
|
|
786
|
+
import GUPnP12 from '@girs/gupnp-1.2';
|
|
787
|
+
export default GUPnP12;
|
|
788
|
+
}
|
|
789
|
+
declare module 'gi://GUPnP?version=1.6' {
|
|
790
|
+
import GUPnP16 from '@girs/gupnp-1.6';
|
|
791
|
+
export default GUPnP16;
|
|
792
|
+
}
|
|
793
|
+
declare module 'gi://GUPnPAV?version=1.0' {
|
|
794
|
+
import GUPnPAV10 from '@girs/gupnpav-1.0';
|
|
795
|
+
export default GUPnPAV10;
|
|
796
|
+
}
|
|
797
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
798
|
+
declare module 'gi://GUPnPAV' {
|
|
799
|
+
import GUPnPAV10 from '@girs/gupnpav-1.0';
|
|
800
|
+
export default GUPnPAV10;
|
|
801
|
+
}
|
|
802
|
+
declare module 'gi://GUPnPDLNA?version=1.0' {
|
|
803
|
+
import GUPnPDLNA10 from '@girs/gupnpdlna-1.0';
|
|
804
|
+
export default GUPnPDLNA10;
|
|
805
|
+
}
|
|
806
|
+
declare module 'gi://GUPnPDLNA?version=2.0' {
|
|
807
|
+
import GUPnPDLNA20 from '@girs/gupnpdlna-2.0';
|
|
808
|
+
export default GUPnPDLNA20;
|
|
809
|
+
}
|
|
810
|
+
declare module 'gi://GUPnPDLNAGst?version=2.0' {
|
|
811
|
+
import GUPnPDLNAGst20 from '@girs/gupnpdlnagst-2.0';
|
|
812
|
+
export default GUPnPDLNAGst20;
|
|
813
|
+
}
|
|
814
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
815
|
+
declare module 'gi://GUPnPDLNAGst' {
|
|
816
|
+
import GUPnPDLNAGst20 from '@girs/gupnpdlnagst-2.0';
|
|
817
|
+
export default GUPnPDLNAGst20;
|
|
818
|
+
}
|
|
819
|
+
declare module 'gi://GUPnPIgd?version=1.0' {
|
|
820
|
+
import GUPnPIgd10 from '@girs/gupnpigd-1.0';
|
|
821
|
+
export default GUPnPIgd10;
|
|
822
|
+
}
|
|
823
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
824
|
+
declare module 'gi://GUPnPIgd' {
|
|
825
|
+
import GUPnPIgd10 from '@girs/gupnpigd-1.0';
|
|
826
|
+
export default GUPnPIgd10;
|
|
827
|
+
}
|
|
828
|
+
declare module 'gi://GUdev?version=1.0' {
|
|
829
|
+
import GUdev10 from '@girs/gudev-1.0';
|
|
830
|
+
export default GUdev10;
|
|
831
|
+
}
|
|
832
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
833
|
+
declare module 'gi://GUdev' {
|
|
834
|
+
import GUdev10 from '@girs/gudev-1.0';
|
|
835
|
+
export default GUdev10;
|
|
836
|
+
}
|
|
837
|
+
declare module 'gi://GUsb?version=1.0' {
|
|
838
|
+
import GUsb10 from '@girs/gusb-1.0';
|
|
839
|
+
export default GUsb10;
|
|
840
|
+
}
|
|
841
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
842
|
+
declare module 'gi://GUsb' {
|
|
843
|
+
import GUsb10 from '@girs/gusb-1.0';
|
|
844
|
+
export default GUsb10;
|
|
845
|
+
}
|
|
846
|
+
declare module 'gi://GVnc?version=1.0' {
|
|
847
|
+
import GVnc10 from '@girs/gvnc-1.0';
|
|
848
|
+
export default GVnc10;
|
|
849
|
+
}
|
|
850
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
851
|
+
declare module 'gi://GVnc' {
|
|
852
|
+
import GVnc10 from '@girs/gvnc-1.0';
|
|
853
|
+
export default GVnc10;
|
|
854
|
+
}
|
|
855
|
+
declare module 'gi://GVncPulse?version=1.0' {
|
|
856
|
+
import GVncPulse10 from '@girs/gvncpulse-1.0';
|
|
857
|
+
export default GVncPulse10;
|
|
858
|
+
}
|
|
859
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
860
|
+
declare module 'gi://GVncPulse' {
|
|
861
|
+
import GVncPulse10 from '@girs/gvncpulse-1.0';
|
|
862
|
+
export default GVncPulse10;
|
|
863
|
+
}
|
|
864
|
+
declare module 'gi://GWeather?version=3.0' {
|
|
865
|
+
import GWeather30 from '@girs/gweather-3.0';
|
|
866
|
+
export default GWeather30;
|
|
867
|
+
}
|
|
868
|
+
declare module 'gi://GWeather?version=4.0' {
|
|
869
|
+
import GWeather40 from '@girs/gweather-4.0';
|
|
870
|
+
export default GWeather40;
|
|
871
|
+
}
|
|
872
|
+
declare module 'gi://GXPS?version=0.1' {
|
|
873
|
+
import GXPS01 from '@girs/gxps-0.1';
|
|
874
|
+
export default GXPS01;
|
|
875
|
+
}
|
|
876
|
+
declare module 'gi://Gxps?version=1.0' {
|
|
877
|
+
import Gxps10 from '@girs/gxps-1.0';
|
|
878
|
+
export default Gxps10;
|
|
879
|
+
}
|
|
880
|
+
declare module 'gi://GXml?version=0.14' {
|
|
881
|
+
import GXml014 from '@girs/gxml-0.14';
|
|
882
|
+
export default GXml014;
|
|
883
|
+
}
|
|
884
|
+
declare module 'gi://GXml?version=0.16' {
|
|
885
|
+
import GXml016 from '@girs/gxml-0.16';
|
|
886
|
+
export default GXml016;
|
|
887
|
+
}
|
|
888
|
+
declare module 'gi://GXml?version=0.18' {
|
|
889
|
+
import GXml018 from '@girs/gxml-0.18';
|
|
890
|
+
export default GXml018;
|
|
891
|
+
}
|
|
892
|
+
declare module 'gi://GXml?version=0.20' {
|
|
893
|
+
import GXml020 from '@girs/gxml-0.20';
|
|
894
|
+
export default GXml020;
|
|
895
|
+
}
|
|
896
|
+
declare module 'gi://Gandiva?version=1.0' {
|
|
897
|
+
import Gandiva10 from '@girs/gandiva-1.0';
|
|
898
|
+
export default Gandiva10;
|
|
899
|
+
}
|
|
900
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
901
|
+
declare module 'gi://Gandiva' {
|
|
902
|
+
import Gandiva10 from '@girs/gandiva-1.0';
|
|
903
|
+
export default Gandiva10;
|
|
904
|
+
}
|
|
905
|
+
declare module 'gi://Gck?version=1' {
|
|
906
|
+
import Gck1 from '@girs/gck-1';
|
|
907
|
+
export default Gck1;
|
|
908
|
+
}
|
|
909
|
+
declare module 'gi://Gck?version=2' {
|
|
910
|
+
import Gck2 from '@girs/gck-2';
|
|
911
|
+
export default Gck2;
|
|
912
|
+
}
|
|
913
|
+
declare module 'gi://Gcr?version=3' {
|
|
914
|
+
import Gcr3 from '@girs/gcr-3';
|
|
915
|
+
export default Gcr3;
|
|
916
|
+
}
|
|
917
|
+
declare module 'gi://Gcr?version=4' {
|
|
918
|
+
import Gcr4 from '@girs/gcr-4';
|
|
919
|
+
export default Gcr4;
|
|
920
|
+
}
|
|
921
|
+
declare module 'gi://GcrGtk3?version=4' {
|
|
922
|
+
import GcrGtk34 from '@girs/gcrgtk3-4';
|
|
923
|
+
export default GcrGtk34;
|
|
924
|
+
}
|
|
925
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
926
|
+
declare module 'gi://GcrGtk3' {
|
|
927
|
+
import GcrGtk34 from '@girs/gcrgtk3-4';
|
|
928
|
+
export default GcrGtk34;
|
|
929
|
+
}
|
|
930
|
+
declare module 'gi://GcrGtk4?version=4' {
|
|
931
|
+
import GcrGtk44 from '@girs/gcrgtk4-4';
|
|
932
|
+
export default GcrGtk44;
|
|
933
|
+
}
|
|
934
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
935
|
+
declare module 'gi://GcrGtk4' {
|
|
936
|
+
import GcrGtk44 from '@girs/gcrgtk4-4';
|
|
937
|
+
export default GcrGtk44;
|
|
938
|
+
}
|
|
939
|
+
declare module 'gi://GcrUi?version=3' {
|
|
940
|
+
import GcrUi3 from '@girs/gcrui-3';
|
|
941
|
+
export default GcrUi3;
|
|
942
|
+
}
|
|
943
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
944
|
+
declare module 'gi://GcrUi' {
|
|
945
|
+
import GcrUi3 from '@girs/gcrui-3';
|
|
946
|
+
export default GcrUi3;
|
|
947
|
+
}
|
|
948
|
+
declare module 'gi://Gd?version=1.0' {
|
|
949
|
+
import Gd10 from '@girs/gd-1.0';
|
|
950
|
+
export default Gd10;
|
|
951
|
+
}
|
|
952
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
953
|
+
declare module 'gi://Gd' {
|
|
954
|
+
import Gd10 from '@girs/gd-1.0';
|
|
955
|
+
export default Gd10;
|
|
956
|
+
}
|
|
957
|
+
declare module 'gi://Gda?version=5.0' {
|
|
958
|
+
import Gda50 from '@girs/gda-5.0';
|
|
959
|
+
export default Gda50;
|
|
960
|
+
}
|
|
961
|
+
declare module 'gi://Gda?version=6.0' {
|
|
962
|
+
import Gda60 from '@girs/gda-6.0';
|
|
963
|
+
export default Gda60;
|
|
964
|
+
}
|
|
965
|
+
declare module 'gi://Gdaui?version=5.0' {
|
|
966
|
+
import Gdaui50 from '@girs/gdaui-5.0';
|
|
967
|
+
export default Gdaui50;
|
|
968
|
+
}
|
|
969
|
+
declare module 'gi://Gdaui?version=6.0' {
|
|
970
|
+
import Gdaui60 from '@girs/gdaui-6.0';
|
|
971
|
+
export default Gdaui60;
|
|
972
|
+
}
|
|
973
|
+
declare module 'gi://Gdk?version=2.0' {
|
|
974
|
+
import Gdk20 from '@girs/gdk-2.0';
|
|
975
|
+
export default Gdk20;
|
|
976
|
+
}
|
|
977
|
+
declare module 'gi://Gdk?version=3.0' {
|
|
978
|
+
import Gdk30 from '@girs/gdk-3.0';
|
|
979
|
+
export default Gdk30;
|
|
980
|
+
}
|
|
981
|
+
declare module 'gi://Gdk?version=4.0' {
|
|
982
|
+
import Gdk40 from '@girs/gdk-4.0';
|
|
983
|
+
export default Gdk40;
|
|
984
|
+
}
|
|
985
|
+
declare module 'gi://GdkPixbuf?version=2.0' {
|
|
986
|
+
import GdkPixbuf20 from '@girs/gdkpixbuf-2.0';
|
|
987
|
+
export default GdkPixbuf20;
|
|
988
|
+
}
|
|
989
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
990
|
+
declare module 'gi://GdkPixbuf' {
|
|
991
|
+
import GdkPixbuf20 from '@girs/gdkpixbuf-2.0';
|
|
992
|
+
export default GdkPixbuf20;
|
|
993
|
+
}
|
|
994
|
+
declare module 'gi://GdkPixdata?version=2.0' {
|
|
995
|
+
import GdkPixdata20 from '@girs/gdkpixdata-2.0';
|
|
996
|
+
export default GdkPixdata20;
|
|
997
|
+
}
|
|
998
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
999
|
+
declare module 'gi://GdkPixdata' {
|
|
1000
|
+
import GdkPixdata20 from '@girs/gdkpixdata-2.0';
|
|
1001
|
+
export default GdkPixdata20;
|
|
1002
|
+
}
|
|
1003
|
+
declare module 'gi://GdkWayland?version=4.0' {
|
|
1004
|
+
import GdkWayland40 from '@girs/gdkwayland-4.0';
|
|
1005
|
+
export default GdkWayland40;
|
|
1006
|
+
}
|
|
1007
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1008
|
+
declare module 'gi://GdkWayland' {
|
|
1009
|
+
import GdkWayland40 from '@girs/gdkwayland-4.0';
|
|
1010
|
+
export default GdkWayland40;
|
|
1011
|
+
}
|
|
1012
|
+
declare module 'gi://GdkX11?version=2.0' {
|
|
1013
|
+
import GdkX1120 from '@girs/gdkx11-2.0';
|
|
1014
|
+
export default GdkX1120;
|
|
1015
|
+
}
|
|
1016
|
+
declare module 'gi://GdkX11?version=3.0' {
|
|
1017
|
+
import GdkX1130 from '@girs/gdkx11-3.0';
|
|
1018
|
+
export default GdkX1130;
|
|
1019
|
+
}
|
|
1020
|
+
declare module 'gi://GdkX11?version=4.0' {
|
|
1021
|
+
import GdkX1140 from '@girs/gdkx11-4.0';
|
|
1022
|
+
export default GdkX1140;
|
|
1023
|
+
}
|
|
1024
|
+
declare module 'gi://Gdl?version=3' {
|
|
1025
|
+
import Gdl3 from '@girs/gdl-3';
|
|
1026
|
+
export default Gdl3;
|
|
1027
|
+
}
|
|
1028
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1029
|
+
declare module 'gi://Gdl' {
|
|
1030
|
+
import Gdl3 from '@girs/gdl-3';
|
|
1031
|
+
export default Gdl3;
|
|
1032
|
+
}
|
|
1033
|
+
declare module 'gi://Gdm?version=1.0' {
|
|
1034
|
+
import Gdm10 from '@girs/gdm-1.0';
|
|
1035
|
+
export default Gdm10;
|
|
1036
|
+
}
|
|
1037
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1038
|
+
declare module 'gi://Gdm' {
|
|
1039
|
+
import Gdm10 from '@girs/gdm-1.0';
|
|
1040
|
+
export default Gdm10;
|
|
1041
|
+
}
|
|
1042
|
+
declare module 'gi://Gedit?version=3.0' {
|
|
1043
|
+
import Gedit30 from '@girs/gedit-3.0';
|
|
1044
|
+
export default Gedit30;
|
|
1045
|
+
}
|
|
1046
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1047
|
+
declare module 'gi://Gedit' {
|
|
1048
|
+
import Gedit30 from '@girs/gedit-3.0';
|
|
1049
|
+
export default Gedit30;
|
|
1050
|
+
}
|
|
1051
|
+
declare module 'gi://Gee?version=0.8' {
|
|
1052
|
+
import Gee08 from '@girs/gee-0.8';
|
|
1053
|
+
export default Gee08;
|
|
1054
|
+
}
|
|
1055
|
+
declare module 'gi://Gee?version=1.0' {
|
|
1056
|
+
import Gee10 from '@girs/gee-1.0';
|
|
1057
|
+
export default Gee10;
|
|
1058
|
+
}
|
|
1059
|
+
declare module 'gi://Gegl?version=0.3' {
|
|
1060
|
+
import Gegl03 from '@girs/gegl-0.3';
|
|
1061
|
+
export default Gegl03;
|
|
1062
|
+
}
|
|
1063
|
+
declare module 'gi://Gegl?version=0.4' {
|
|
1064
|
+
import Gegl04 from '@girs/gegl-0.4';
|
|
1065
|
+
export default Gegl04;
|
|
1066
|
+
}
|
|
1067
|
+
declare module 'gi://GeglGtk3?version=0.1' {
|
|
1068
|
+
import GeglGtk301 from '@girs/geglgtk3-0.1';
|
|
1069
|
+
export default GeglGtk301;
|
|
1070
|
+
}
|
|
1071
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1072
|
+
declare module 'gi://GeglGtk3' {
|
|
1073
|
+
import GeglGtk301 from '@girs/geglgtk3-0.1';
|
|
1074
|
+
export default GeglGtk301;
|
|
1075
|
+
}
|
|
1076
|
+
declare module 'gi://Geoclue?version=2.0' {
|
|
1077
|
+
import Geoclue20 from '@girs/geoclue-2.0';
|
|
1078
|
+
export default Geoclue20;
|
|
1079
|
+
}
|
|
1080
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1081
|
+
declare module 'gi://Geoclue' {
|
|
1082
|
+
import Geoclue20 from '@girs/geoclue-2.0';
|
|
1083
|
+
export default Geoclue20;
|
|
1084
|
+
}
|
|
1085
|
+
declare module 'gi://GeocodeGlib?version=1.0' {
|
|
1086
|
+
import GeocodeGlib10 from '@girs/geocodeglib-1.0';
|
|
1087
|
+
export default GeocodeGlib10;
|
|
1088
|
+
}
|
|
1089
|
+
declare module 'gi://GeocodeGlib?version=2.0' {
|
|
1090
|
+
import GeocodeGlib20 from '@girs/geocodeglib-2.0';
|
|
1091
|
+
export default GeocodeGlib20;
|
|
1092
|
+
}
|
|
1093
|
+
declare module 'gi://Gepub?version=0.5' {
|
|
1094
|
+
import Gepub05 from '@girs/gepub-0.5';
|
|
1095
|
+
export default Gepub05;
|
|
1096
|
+
}
|
|
1097
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1098
|
+
declare module 'gi://Gepub' {
|
|
1099
|
+
import Gepub05 from '@girs/gepub-0.5';
|
|
1100
|
+
export default Gepub05;
|
|
1101
|
+
}
|
|
1102
|
+
declare module 'gi://Ggit?version=1.0' {
|
|
1103
|
+
import Ggit10 from '@girs/ggit-1.0';
|
|
1104
|
+
export default Ggit10;
|
|
1105
|
+
}
|
|
1106
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1107
|
+
declare module 'gi://Ggit' {
|
|
1108
|
+
import Ggit10 from '@girs/ggit-1.0';
|
|
1109
|
+
export default Ggit10;
|
|
1110
|
+
}
|
|
1111
|
+
declare module 'gi://Gio?version=2.0' {
|
|
1112
|
+
import Gio20 from '@girs/gio-2.0';
|
|
1113
|
+
export default Gio20;
|
|
1114
|
+
}
|
|
1115
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1116
|
+
declare module 'gi://Gio' {
|
|
1117
|
+
import Gio20 from '@girs/gio-2.0';
|
|
1118
|
+
export default Gio20;
|
|
1119
|
+
}
|
|
1120
|
+
declare module 'gi://Gitg?version=1.0' {
|
|
1121
|
+
import Gitg10 from '@girs/gitg-1.0';
|
|
1122
|
+
export default Gitg10;
|
|
1123
|
+
}
|
|
1124
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1125
|
+
declare module 'gi://Gitg' {
|
|
1126
|
+
import Gitg10 from '@girs/gitg-1.0';
|
|
1127
|
+
export default Gitg10;
|
|
1128
|
+
}
|
|
1129
|
+
declare module 'gi://GitgExt?version=1.0' {
|
|
1130
|
+
import GitgExt10 from '@girs/gitgext-1.0';
|
|
1131
|
+
export default GitgExt10;
|
|
1132
|
+
}
|
|
1133
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1134
|
+
declare module 'gi://GitgExt' {
|
|
1135
|
+
import GitgExt10 from '@girs/gitgext-1.0';
|
|
1136
|
+
export default GitgExt10;
|
|
1137
|
+
}
|
|
1138
|
+
declare module 'gi://GjsDBus?version=1.0' {
|
|
1139
|
+
import GjsDBus10 from '@girs/gjsdbus-1.0';
|
|
1140
|
+
export default GjsDBus10;
|
|
1141
|
+
}
|
|
1142
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1143
|
+
declare module 'gi://GjsDBus' {
|
|
1144
|
+
import GjsDBus10 from '@girs/gjsdbus-1.0';
|
|
1145
|
+
export default GjsDBus10;
|
|
1146
|
+
}
|
|
1147
|
+
declare module 'gi://Gkbd?version=3.0' {
|
|
1148
|
+
import Gkbd30 from '@girs/gkbd-3.0';
|
|
1149
|
+
export default Gkbd30;
|
|
1150
|
+
}
|
|
1151
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1152
|
+
declare module 'gi://Gkbd' {
|
|
1153
|
+
import Gkbd30 from '@girs/gkbd-3.0';
|
|
1154
|
+
export default Gkbd30;
|
|
1155
|
+
}
|
|
1156
|
+
declare module 'gi://Gladeui?version=2.0' {
|
|
1157
|
+
import Gladeui20 from '@girs/gladeui-2.0';
|
|
1158
|
+
export default Gladeui20;
|
|
1159
|
+
}
|
|
1160
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1161
|
+
declare module 'gi://Gladeui' {
|
|
1162
|
+
import Gladeui20 from '@girs/gladeui-2.0';
|
|
1163
|
+
export default Gladeui20;
|
|
1164
|
+
}
|
|
1165
|
+
declare module 'gi://GnomeAutoar?version=0.1' {
|
|
1166
|
+
import GnomeAutoar01 from '@girs/gnomeautoar-0.1';
|
|
1167
|
+
export default GnomeAutoar01;
|
|
1168
|
+
}
|
|
1169
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1170
|
+
declare module 'gi://GnomeAutoar' {
|
|
1171
|
+
import GnomeAutoar01 from '@girs/gnomeautoar-0.1';
|
|
1172
|
+
export default GnomeAutoar01;
|
|
1173
|
+
}
|
|
1174
|
+
declare module 'gi://GnomeAutoarGtk?version=0.1' {
|
|
1175
|
+
import GnomeAutoarGtk01 from '@girs/gnomeautoargtk-0.1';
|
|
1176
|
+
export default GnomeAutoarGtk01;
|
|
1177
|
+
}
|
|
1178
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1179
|
+
declare module 'gi://GnomeAutoarGtk' {
|
|
1180
|
+
import GnomeAutoarGtk01 from '@girs/gnomeautoargtk-0.1';
|
|
1181
|
+
export default GnomeAutoarGtk01;
|
|
1182
|
+
}
|
|
1183
|
+
declare module 'gi://GnomeBG?version=4.0' {
|
|
1184
|
+
import GnomeBG40 from '@girs/gnomebg-4.0';
|
|
1185
|
+
export default GnomeBG40;
|
|
1186
|
+
}
|
|
1187
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1188
|
+
declare module 'gi://GnomeBG' {
|
|
1189
|
+
import GnomeBG40 from '@girs/gnomebg-4.0';
|
|
1190
|
+
export default GnomeBG40;
|
|
1191
|
+
}
|
|
1192
|
+
declare module 'gi://GnomeBluetooth?version=1.0' {
|
|
1193
|
+
import GnomeBluetooth10 from '@girs/gnomebluetooth-1.0';
|
|
1194
|
+
export default GnomeBluetooth10;
|
|
1195
|
+
}
|
|
1196
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1197
|
+
declare module 'gi://GnomeBluetooth' {
|
|
1198
|
+
import GnomeBluetooth10 from '@girs/gnomebluetooth-1.0';
|
|
1199
|
+
export default GnomeBluetooth10;
|
|
1200
|
+
}
|
|
1201
|
+
declare module 'gi://GnomeDesktop?version=3.0' {
|
|
1202
|
+
import GnomeDesktop30 from '@girs/gnomedesktop-3.0';
|
|
1203
|
+
export default GnomeDesktop30;
|
|
1204
|
+
}
|
|
1205
|
+
declare module 'gi://GnomeDesktop?version=4.0' {
|
|
1206
|
+
import GnomeDesktop40 from '@girs/gnomedesktop-4.0';
|
|
1207
|
+
export default GnomeDesktop40;
|
|
1208
|
+
}
|
|
1209
|
+
declare module 'gi://GnomeKeyring?version=1.0' {
|
|
1210
|
+
import GnomeKeyring10 from '@girs/gnomekeyring-1.0';
|
|
1211
|
+
export default GnomeKeyring10;
|
|
1212
|
+
}
|
|
1213
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1214
|
+
declare module 'gi://GnomeKeyring' {
|
|
1215
|
+
import GnomeKeyring10 from '@girs/gnomekeyring-1.0';
|
|
1216
|
+
export default GnomeKeyring10;
|
|
1217
|
+
}
|
|
1218
|
+
declare module 'gi://GnomeMaps?version=1.0' {
|
|
1219
|
+
import GnomeMaps10 from '@girs/gnomemaps-1.0';
|
|
1220
|
+
export default GnomeMaps10;
|
|
1221
|
+
}
|
|
1222
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1223
|
+
declare module 'gi://GnomeMaps' {
|
|
1224
|
+
import GnomeMaps10 from '@girs/gnomemaps-1.0';
|
|
1225
|
+
export default GnomeMaps10;
|
|
1226
|
+
}
|
|
1227
|
+
declare module 'gi://GnomeRR?version=4.0' {
|
|
1228
|
+
import GnomeRR40 from '@girs/gnomerr-4.0';
|
|
1229
|
+
export default GnomeRR40;
|
|
1230
|
+
}
|
|
1231
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1232
|
+
declare module 'gi://GnomeRR' {
|
|
1233
|
+
import GnomeRR40 from '@girs/gnomerr-4.0';
|
|
1234
|
+
export default GnomeRR40;
|
|
1235
|
+
}
|
|
1236
|
+
declare module 'gi://GoVirt?version=1.0' {
|
|
1237
|
+
import GoVirt10 from '@girs/govirt-1.0';
|
|
1238
|
+
export default GoVirt10;
|
|
1239
|
+
}
|
|
1240
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1241
|
+
declare module 'gi://GoVirt' {
|
|
1242
|
+
import GoVirt10 from '@girs/govirt-1.0';
|
|
1243
|
+
export default GoVirt10;
|
|
1244
|
+
}
|
|
1245
|
+
declare module 'gi://Goa?version=1.0' {
|
|
1246
|
+
import Goa10 from '@girs/goa-1.0';
|
|
1247
|
+
export default Goa10;
|
|
1248
|
+
}
|
|
1249
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1250
|
+
declare module 'gi://Goa' {
|
|
1251
|
+
import Goa10 from '@girs/goa-1.0';
|
|
1252
|
+
export default Goa10;
|
|
1253
|
+
}
|
|
1254
|
+
declare module 'gi://GooCanvas?version=2.0' {
|
|
1255
|
+
import GooCanvas20 from '@girs/goocanvas-2.0';
|
|
1256
|
+
export default GooCanvas20;
|
|
1257
|
+
}
|
|
1258
|
+
declare module 'gi://GooCanvas?version=3.0' {
|
|
1259
|
+
import GooCanvas30 from '@girs/goocanvas-3.0';
|
|
1260
|
+
export default GooCanvas30;
|
|
1261
|
+
}
|
|
1262
|
+
declare module 'gi://Gpseq?version=1.0' {
|
|
1263
|
+
import Gpseq10 from '@girs/gpseq-1.0';
|
|
1264
|
+
export default Gpseq10;
|
|
1265
|
+
}
|
|
1266
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1267
|
+
declare module 'gi://Gpseq' {
|
|
1268
|
+
import Gpseq10 from '@girs/gpseq-1.0';
|
|
1269
|
+
export default Gpseq10;
|
|
1270
|
+
}
|
|
1271
|
+
declare module 'gi://Granite?version=1.0' {
|
|
1272
|
+
import Granite10 from '@girs/granite-1.0';
|
|
1273
|
+
export default Granite10;
|
|
1274
|
+
}
|
|
1275
|
+
declare module 'gi://Granite?version=7.0' {
|
|
1276
|
+
import Granite70 from '@girs/granite-7.0';
|
|
1277
|
+
export default Granite70;
|
|
1278
|
+
}
|
|
1279
|
+
declare module 'gi://Graphene?version=1.0' {
|
|
1280
|
+
import Graphene10 from '@girs/graphene-1.0';
|
|
1281
|
+
export default Graphene10;
|
|
1282
|
+
}
|
|
1283
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1284
|
+
declare module 'gi://Graphene' {
|
|
1285
|
+
import Graphene10 from '@girs/graphene-1.0';
|
|
1286
|
+
export default Graphene10;
|
|
1287
|
+
}
|
|
1288
|
+
declare module 'gi://Grl?version=0.1' {
|
|
1289
|
+
import Grl01 from '@girs/grl-0.1';
|
|
1290
|
+
export default Grl01;
|
|
1291
|
+
}
|
|
1292
|
+
declare module 'gi://Grl?version=0.2' {
|
|
1293
|
+
import Grl02 from '@girs/grl-0.2';
|
|
1294
|
+
export default Grl02;
|
|
1295
|
+
}
|
|
1296
|
+
declare module 'gi://Grl?version=0.3' {
|
|
1297
|
+
import Grl03 from '@girs/grl-0.3';
|
|
1298
|
+
export default Grl03;
|
|
1299
|
+
}
|
|
1300
|
+
declare module 'gi://GrlNet?version=0.1' {
|
|
1301
|
+
import GrlNet01 from '@girs/grlnet-0.1';
|
|
1302
|
+
export default GrlNet01;
|
|
1303
|
+
}
|
|
1304
|
+
declare module 'gi://GrlNet?version=0.2' {
|
|
1305
|
+
import GrlNet02 from '@girs/grlnet-0.2';
|
|
1306
|
+
export default GrlNet02;
|
|
1307
|
+
}
|
|
1308
|
+
declare module 'gi://GrlNet?version=0.3' {
|
|
1309
|
+
import GrlNet03 from '@girs/grlnet-0.3';
|
|
1310
|
+
export default GrlNet03;
|
|
1311
|
+
}
|
|
1312
|
+
declare module 'gi://GrlPls?version=0.2' {
|
|
1313
|
+
import GrlPls02 from '@girs/grlpls-0.2';
|
|
1314
|
+
export default GrlPls02;
|
|
1315
|
+
}
|
|
1316
|
+
declare module 'gi://GrlPls?version=0.3' {
|
|
1317
|
+
import GrlPls03 from '@girs/grlpls-0.3';
|
|
1318
|
+
export default GrlPls03;
|
|
1319
|
+
}
|
|
1320
|
+
declare module 'gi://Grss?version=0.7' {
|
|
1321
|
+
import Grss07 from '@girs/grss-0.7';
|
|
1322
|
+
export default Grss07;
|
|
1323
|
+
}
|
|
1324
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1325
|
+
declare module 'gi://Grss' {
|
|
1326
|
+
import Grss07 from '@girs/grss-0.7';
|
|
1327
|
+
export default Grss07;
|
|
1328
|
+
}
|
|
1329
|
+
declare module 'gi://Gsf?version=1' {
|
|
1330
|
+
import Gsf1 from '@girs/gsf-1';
|
|
1331
|
+
export default Gsf1;
|
|
1332
|
+
}
|
|
1333
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1334
|
+
declare module 'gi://Gsf' {
|
|
1335
|
+
import Gsf1 from '@girs/gsf-1';
|
|
1336
|
+
export default Gsf1;
|
|
1337
|
+
}
|
|
1338
|
+
declare module 'gi://Gsk?version=4.0' {
|
|
1339
|
+
import Gsk40 from '@girs/gsk-4.0';
|
|
1340
|
+
export default Gsk40;
|
|
1341
|
+
}
|
|
1342
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1343
|
+
declare module 'gi://Gsk' {
|
|
1344
|
+
import Gsk40 from '@girs/gsk-4.0';
|
|
1345
|
+
export default Gsk40;
|
|
1346
|
+
}
|
|
1347
|
+
declare module 'gi://Gspell?version=1' {
|
|
1348
|
+
import Gspell1 from '@girs/gspell-1';
|
|
1349
|
+
export default Gspell1;
|
|
1350
|
+
}
|
|
1351
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1352
|
+
declare module 'gi://Gspell' {
|
|
1353
|
+
import Gspell1 from '@girs/gspell-1';
|
|
1354
|
+
export default Gspell1;
|
|
1355
|
+
}
|
|
1356
|
+
declare module 'gi://Gst?version=1.0' {
|
|
1357
|
+
import Gst10 from '@girs/gst-1.0';
|
|
1358
|
+
export default Gst10;
|
|
1359
|
+
}
|
|
1360
|
+
declare module 'gi://Gst?version=0.10' {
|
|
1361
|
+
import Gst010 from '@girs/gst-0.10';
|
|
1362
|
+
export default Gst010;
|
|
1363
|
+
}
|
|
1364
|
+
declare module 'gi://GstAllocators?version=1.0' {
|
|
1365
|
+
import GstAllocators10 from '@girs/gstallocators-1.0';
|
|
1366
|
+
export default GstAllocators10;
|
|
1367
|
+
}
|
|
1368
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1369
|
+
declare module 'gi://GstAllocators' {
|
|
1370
|
+
import GstAllocators10 from '@girs/gstallocators-1.0';
|
|
1371
|
+
export default GstAllocators10;
|
|
1372
|
+
}
|
|
1373
|
+
declare module 'gi://GstApp?version=1.0' {
|
|
1374
|
+
import GstApp10 from '@girs/gstapp-1.0';
|
|
1375
|
+
export default GstApp10;
|
|
1376
|
+
}
|
|
1377
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1378
|
+
declare module 'gi://GstApp' {
|
|
1379
|
+
import GstApp10 from '@girs/gstapp-1.0';
|
|
1380
|
+
export default GstApp10;
|
|
1381
|
+
}
|
|
1382
|
+
declare module 'gi://GstAudio?version=1.0' {
|
|
1383
|
+
import GstAudio10 from '@girs/gstaudio-1.0';
|
|
1384
|
+
export default GstAudio10;
|
|
1385
|
+
}
|
|
1386
|
+
declare module 'gi://GstAudio?version=0.10' {
|
|
1387
|
+
import GstAudio010 from '@girs/gstaudio-0.10';
|
|
1388
|
+
export default GstAudio010;
|
|
1389
|
+
}
|
|
1390
|
+
declare module 'gi://GstBadAllocators?version=1.0' {
|
|
1391
|
+
import GstBadAllocators10 from '@girs/gstbadallocators-1.0';
|
|
1392
|
+
export default GstBadAllocators10;
|
|
1393
|
+
}
|
|
1394
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1395
|
+
declare module 'gi://GstBadAllocators' {
|
|
1396
|
+
import GstBadAllocators10 from '@girs/gstbadallocators-1.0';
|
|
1397
|
+
export default GstBadAllocators10;
|
|
1398
|
+
}
|
|
1399
|
+
declare module 'gi://GstBadAudio?version=1.0' {
|
|
1400
|
+
import GstBadAudio10 from '@girs/gstbadaudio-1.0';
|
|
1401
|
+
export default GstBadAudio10;
|
|
1402
|
+
}
|
|
1403
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1404
|
+
declare module 'gi://GstBadAudio' {
|
|
1405
|
+
import GstBadAudio10 from '@girs/gstbadaudio-1.0';
|
|
1406
|
+
export default GstBadAudio10;
|
|
1407
|
+
}
|
|
1408
|
+
declare module 'gi://GstBase?version=1.0' {
|
|
1409
|
+
import GstBase10 from '@girs/gstbase-1.0';
|
|
1410
|
+
export default GstBase10;
|
|
1411
|
+
}
|
|
1412
|
+
declare module 'gi://GstBase?version=0.10' {
|
|
1413
|
+
import GstBase010 from '@girs/gstbase-0.10';
|
|
1414
|
+
export default GstBase010;
|
|
1415
|
+
}
|
|
1416
|
+
declare module 'gi://GstCheck?version=1.0' {
|
|
1417
|
+
import GstCheck10 from '@girs/gstcheck-1.0';
|
|
1418
|
+
export default GstCheck10;
|
|
1419
|
+
}
|
|
1420
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1421
|
+
declare module 'gi://GstCheck' {
|
|
1422
|
+
import GstCheck10 from '@girs/gstcheck-1.0';
|
|
1423
|
+
export default GstCheck10;
|
|
1424
|
+
}
|
|
1425
|
+
declare module 'gi://GstCodecs?version=1.0' {
|
|
1426
|
+
import GstCodecs10 from '@girs/gstcodecs-1.0';
|
|
1427
|
+
export default GstCodecs10;
|
|
1428
|
+
}
|
|
1429
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1430
|
+
declare module 'gi://GstCodecs' {
|
|
1431
|
+
import GstCodecs10 from '@girs/gstcodecs-1.0';
|
|
1432
|
+
export default GstCodecs10;
|
|
1433
|
+
}
|
|
1434
|
+
declare module 'gi://GstController?version=1.0' {
|
|
1435
|
+
import GstController10 from '@girs/gstcontroller-1.0';
|
|
1436
|
+
export default GstController10;
|
|
1437
|
+
}
|
|
1438
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1439
|
+
declare module 'gi://GstController' {
|
|
1440
|
+
import GstController10 from '@girs/gstcontroller-1.0';
|
|
1441
|
+
export default GstController10;
|
|
1442
|
+
}
|
|
1443
|
+
declare module 'gi://GstFft?version=1.0' {
|
|
1444
|
+
import GstFft10 from '@girs/gstfft-1.0';
|
|
1445
|
+
export default GstFft10;
|
|
1446
|
+
}
|
|
1447
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1448
|
+
declare module 'gi://GstFft' {
|
|
1449
|
+
import GstFft10 from '@girs/gstfft-1.0';
|
|
1450
|
+
export default GstFft10;
|
|
1451
|
+
}
|
|
1452
|
+
declare module 'gi://GstGL?version=1.0' {
|
|
1453
|
+
import GstGL10 from '@girs/gstgl-1.0';
|
|
1454
|
+
export default GstGL10;
|
|
1455
|
+
}
|
|
1456
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1457
|
+
declare module 'gi://GstGL' {
|
|
1458
|
+
import GstGL10 from '@girs/gstgl-1.0';
|
|
1459
|
+
export default GstGL10;
|
|
1460
|
+
}
|
|
1461
|
+
declare module 'gi://GstGLEGL?version=1.0' {
|
|
1462
|
+
import GstGLEGL10 from '@girs/gstglegl-1.0';
|
|
1463
|
+
export default GstGLEGL10;
|
|
1464
|
+
}
|
|
1465
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1466
|
+
declare module 'gi://GstGLEGL' {
|
|
1467
|
+
import GstGLEGL10 from '@girs/gstglegl-1.0';
|
|
1468
|
+
export default GstGLEGL10;
|
|
1469
|
+
}
|
|
1470
|
+
declare module 'gi://GstGLWayland?version=1.0' {
|
|
1471
|
+
import GstGLWayland10 from '@girs/gstglwayland-1.0';
|
|
1472
|
+
export default GstGLWayland10;
|
|
1473
|
+
}
|
|
1474
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1475
|
+
declare module 'gi://GstGLWayland' {
|
|
1476
|
+
import GstGLWayland10 from '@girs/gstglwayland-1.0';
|
|
1477
|
+
export default GstGLWayland10;
|
|
1478
|
+
}
|
|
1479
|
+
declare module 'gi://GstGLX11?version=1.0' {
|
|
1480
|
+
import GstGLX1110 from '@girs/gstglx11-1.0';
|
|
1481
|
+
export default GstGLX1110;
|
|
1482
|
+
}
|
|
1483
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1484
|
+
declare module 'gi://GstGLX11' {
|
|
1485
|
+
import GstGLX1110 from '@girs/gstglx11-1.0';
|
|
1486
|
+
export default GstGLX1110;
|
|
1487
|
+
}
|
|
1488
|
+
declare module 'gi://GstInsertBin?version=1.0' {
|
|
1489
|
+
import GstInsertBin10 from '@girs/gstinsertbin-1.0';
|
|
1490
|
+
export default GstInsertBin10;
|
|
1491
|
+
}
|
|
1492
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1493
|
+
declare module 'gi://GstInsertBin' {
|
|
1494
|
+
import GstInsertBin10 from '@girs/gstinsertbin-1.0';
|
|
1495
|
+
export default GstInsertBin10;
|
|
1496
|
+
}
|
|
1497
|
+
declare module 'gi://GstMpegts?version=1.0' {
|
|
1498
|
+
import GstMpegts10 from '@girs/gstmpegts-1.0';
|
|
1499
|
+
export default GstMpegts10;
|
|
1500
|
+
}
|
|
1501
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1502
|
+
declare module 'gi://GstMpegts' {
|
|
1503
|
+
import GstMpegts10 from '@girs/gstmpegts-1.0';
|
|
1504
|
+
export default GstMpegts10;
|
|
1505
|
+
}
|
|
1506
|
+
declare module 'gi://GstNet?version=1.0' {
|
|
1507
|
+
import GstNet10 from '@girs/gstnet-1.0';
|
|
1508
|
+
export default GstNet10;
|
|
1509
|
+
}
|
|
1510
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1511
|
+
declare module 'gi://GstNet' {
|
|
1512
|
+
import GstNet10 from '@girs/gstnet-1.0';
|
|
1513
|
+
export default GstNet10;
|
|
1514
|
+
}
|
|
1515
|
+
declare module 'gi://GstPbutils?version=1.0' {
|
|
1516
|
+
import GstPbutils10 from '@girs/gstpbutils-1.0';
|
|
1517
|
+
export default GstPbutils10;
|
|
1518
|
+
}
|
|
1519
|
+
declare module 'gi://GstPbutils?version=0.10' {
|
|
1520
|
+
import GstPbutils010 from '@girs/gstpbutils-0.10';
|
|
1521
|
+
export default GstPbutils010;
|
|
1522
|
+
}
|
|
1523
|
+
declare module 'gi://GstPlay?version=1.0' {
|
|
1524
|
+
import GstPlay10 from '@girs/gstplay-1.0';
|
|
1525
|
+
export default GstPlay10;
|
|
1526
|
+
}
|
|
1527
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1528
|
+
declare module 'gi://GstPlay' {
|
|
1529
|
+
import GstPlay10 from '@girs/gstplay-1.0';
|
|
1530
|
+
export default GstPlay10;
|
|
1531
|
+
}
|
|
1532
|
+
declare module 'gi://GstPlayer?version=1.0' {
|
|
1533
|
+
import GstPlayer10 from '@girs/gstplayer-1.0';
|
|
1534
|
+
export default GstPlayer10;
|
|
1535
|
+
}
|
|
1536
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1537
|
+
declare module 'gi://GstPlayer' {
|
|
1538
|
+
import GstPlayer10 from '@girs/gstplayer-1.0';
|
|
1539
|
+
export default GstPlayer10;
|
|
1540
|
+
}
|
|
1541
|
+
declare module 'gi://GstRiff?version=1.0' {
|
|
1542
|
+
import GstRiff10 from '@girs/gstriff-1.0';
|
|
1543
|
+
export default GstRiff10;
|
|
1544
|
+
}
|
|
1545
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1546
|
+
declare module 'gi://GstRiff' {
|
|
1547
|
+
import GstRiff10 from '@girs/gstriff-1.0';
|
|
1548
|
+
export default GstRiff10;
|
|
1549
|
+
}
|
|
1550
|
+
declare module 'gi://GstRtp?version=1.0' {
|
|
1551
|
+
import GstRtp10 from '@girs/gstrtp-1.0';
|
|
1552
|
+
export default GstRtp10;
|
|
1553
|
+
}
|
|
1554
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1555
|
+
declare module 'gi://GstRtp' {
|
|
1556
|
+
import GstRtp10 from '@girs/gstrtp-1.0';
|
|
1557
|
+
export default GstRtp10;
|
|
1558
|
+
}
|
|
1559
|
+
declare module 'gi://GstRtsp?version=1.0' {
|
|
1560
|
+
import GstRtsp10 from '@girs/gstrtsp-1.0';
|
|
1561
|
+
export default GstRtsp10;
|
|
1562
|
+
}
|
|
1563
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1564
|
+
declare module 'gi://GstRtsp' {
|
|
1565
|
+
import GstRtsp10 from '@girs/gstrtsp-1.0';
|
|
1566
|
+
export default GstRtsp10;
|
|
1567
|
+
}
|
|
1568
|
+
declare module 'gi://GstRtspServer?version=1.0' {
|
|
1569
|
+
import GstRtspServer10 from '@girs/gstrtspserver-1.0';
|
|
1570
|
+
export default GstRtspServer10;
|
|
1571
|
+
}
|
|
1572
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1573
|
+
declare module 'gi://GstRtspServer' {
|
|
1574
|
+
import GstRtspServer10 from '@girs/gstrtspserver-1.0';
|
|
1575
|
+
export default GstRtspServer10;
|
|
1576
|
+
}
|
|
1577
|
+
declare module 'gi://GstSdp?version=1.0' {
|
|
1578
|
+
import GstSdp10 from '@girs/gstsdp-1.0';
|
|
1579
|
+
export default GstSdp10;
|
|
1580
|
+
}
|
|
1581
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1582
|
+
declare module 'gi://GstSdp' {
|
|
1583
|
+
import GstSdp10 from '@girs/gstsdp-1.0';
|
|
1584
|
+
export default GstSdp10;
|
|
1585
|
+
}
|
|
1586
|
+
declare module 'gi://GstTag?version=1.0' {
|
|
1587
|
+
import GstTag10 from '@girs/gsttag-1.0';
|
|
1588
|
+
export default GstTag10;
|
|
1589
|
+
}
|
|
1590
|
+
declare module 'gi://GstTag?version=0.10' {
|
|
1591
|
+
import GstTag010 from '@girs/gsttag-0.10';
|
|
1592
|
+
export default GstTag010;
|
|
1593
|
+
}
|
|
1594
|
+
declare module 'gi://GstTranscoder?version=1.0' {
|
|
1595
|
+
import GstTranscoder10 from '@girs/gsttranscoder-1.0';
|
|
1596
|
+
export default GstTranscoder10;
|
|
1597
|
+
}
|
|
1598
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1599
|
+
declare module 'gi://GstTranscoder' {
|
|
1600
|
+
import GstTranscoder10 from '@girs/gsttranscoder-1.0';
|
|
1601
|
+
export default GstTranscoder10;
|
|
1602
|
+
}
|
|
1603
|
+
declare module 'gi://GstVideo?version=1.0' {
|
|
1604
|
+
import GstVideo10 from '@girs/gstvideo-1.0';
|
|
1605
|
+
export default GstVideo10;
|
|
1606
|
+
}
|
|
1607
|
+
declare module 'gi://GstVideo?version=0.10' {
|
|
1608
|
+
import GstVideo010 from '@girs/gstvideo-0.10';
|
|
1609
|
+
export default GstVideo010;
|
|
1610
|
+
}
|
|
1611
|
+
declare module 'gi://GstVulkan?version=1.0' {
|
|
1612
|
+
import GstVulkan10 from '@girs/gstvulkan-1.0';
|
|
1613
|
+
export default GstVulkan10;
|
|
1614
|
+
}
|
|
1615
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1616
|
+
declare module 'gi://GstVulkan' {
|
|
1617
|
+
import GstVulkan10 from '@girs/gstvulkan-1.0';
|
|
1618
|
+
export default GstVulkan10;
|
|
1619
|
+
}
|
|
1620
|
+
declare module 'gi://GstWebRTC?version=1.0' {
|
|
1621
|
+
import GstWebRTC10 from '@girs/gstwebrtc-1.0';
|
|
1622
|
+
export default GstWebRTC10;
|
|
1623
|
+
}
|
|
1624
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1625
|
+
declare module 'gi://GstWebRTC' {
|
|
1626
|
+
import GstWebRTC10 from '@girs/gstwebrtc-1.0';
|
|
1627
|
+
export default GstWebRTC10;
|
|
1628
|
+
}
|
|
1629
|
+
declare module 'gi://Gtef?version=2' {
|
|
1630
|
+
import Gtef2 from '@girs/gtef-2';
|
|
1631
|
+
export default Gtef2;
|
|
1632
|
+
}
|
|
1633
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1634
|
+
declare module 'gi://Gtef' {
|
|
1635
|
+
import Gtef2 from '@girs/gtef-2';
|
|
1636
|
+
export default Gtef2;
|
|
1637
|
+
}
|
|
1638
|
+
declare module 'gi://Gtk?version=2.0' {
|
|
1639
|
+
import Gtk20 from '@girs/gtk-2.0';
|
|
1640
|
+
export default Gtk20;
|
|
1641
|
+
}
|
|
1642
|
+
declare module 'gi://Gtk?version=3.0' {
|
|
1643
|
+
import Gtk30 from '@girs/gtk-3.0';
|
|
1644
|
+
export default Gtk30;
|
|
1645
|
+
}
|
|
1646
|
+
declare module 'gi://Gtk?version=4.0' {
|
|
1647
|
+
import Gtk40 from '@girs/gtk-4.0';
|
|
1648
|
+
export default Gtk40;
|
|
1649
|
+
}
|
|
1650
|
+
declare module 'gi://GtkChamplain?version=0.12' {
|
|
1651
|
+
import GtkChamplain012 from '@girs/gtkchamplain-0.12';
|
|
1652
|
+
export default GtkChamplain012;
|
|
1653
|
+
}
|
|
1654
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1655
|
+
declare module 'gi://GtkChamplain' {
|
|
1656
|
+
import GtkChamplain012 from '@girs/gtkchamplain-0.12';
|
|
1657
|
+
export default GtkChamplain012;
|
|
1658
|
+
}
|
|
1659
|
+
declare module 'gi://GtkClutter?version=1.0' {
|
|
1660
|
+
import GtkClutter10 from '@girs/gtkclutter-1.0';
|
|
1661
|
+
export default GtkClutter10;
|
|
1662
|
+
}
|
|
1663
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1664
|
+
declare module 'gi://GtkClutter' {
|
|
1665
|
+
import GtkClutter10 from '@girs/gtkclutter-1.0';
|
|
1666
|
+
export default GtkClutter10;
|
|
1667
|
+
}
|
|
1668
|
+
declare module 'gi://GtkSource?version=3.0' {
|
|
1669
|
+
import GtkSource30 from '@girs/gtksource-3.0';
|
|
1670
|
+
export default GtkSource30;
|
|
1671
|
+
}
|
|
1672
|
+
declare module 'gi://GtkSource?version=4' {
|
|
1673
|
+
import GtkSource4 from '@girs/gtksource-4';
|
|
1674
|
+
export default GtkSource4;
|
|
1675
|
+
}
|
|
1676
|
+
declare module 'gi://GtkSource?version=5' {
|
|
1677
|
+
import GtkSource5 from '@girs/gtksource-5';
|
|
1678
|
+
export default GtkSource5;
|
|
1679
|
+
}
|
|
1680
|
+
declare module 'gi://GtkVnc?version=2.0' {
|
|
1681
|
+
import GtkVnc20 from '@girs/gtkvnc-2.0';
|
|
1682
|
+
export default GtkVnc20;
|
|
1683
|
+
}
|
|
1684
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1685
|
+
declare module 'gi://GtkVnc' {
|
|
1686
|
+
import GtkVnc20 from '@girs/gtkvnc-2.0';
|
|
1687
|
+
export default GtkVnc20;
|
|
1688
|
+
}
|
|
1689
|
+
declare module 'gi://Gucharmap?version=2.90' {
|
|
1690
|
+
import Gucharmap290 from '@girs/gucharmap-2.90';
|
|
1691
|
+
export default Gucharmap290;
|
|
1692
|
+
}
|
|
1693
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1694
|
+
declare module 'gi://Gucharmap' {
|
|
1695
|
+
import Gucharmap290 from '@girs/gucharmap-2.90';
|
|
1696
|
+
export default Gucharmap290;
|
|
1697
|
+
}
|
|
1698
|
+
declare module 'gi://Guestfs?version=1.0' {
|
|
1699
|
+
import Guestfs10 from '@girs/guestfs-1.0';
|
|
1700
|
+
export default Guestfs10;
|
|
1701
|
+
}
|
|
1702
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1703
|
+
declare module 'gi://Guestfs' {
|
|
1704
|
+
import Guestfs10 from '@girs/guestfs-1.0';
|
|
1705
|
+
export default Guestfs10;
|
|
1706
|
+
}
|
|
1707
|
+
declare module 'gi://Handy?version=0.0' {
|
|
1708
|
+
import Handy00 from '@girs/handy-0.0';
|
|
1709
|
+
export default Handy00;
|
|
1710
|
+
}
|
|
1711
|
+
declare module 'gi://Handy?version=1' {
|
|
1712
|
+
import Handy1 from '@girs/handy-1';
|
|
1713
|
+
export default Handy1;
|
|
1714
|
+
}
|
|
1715
|
+
declare module 'gi://HarfBuzz?version=0.0' {
|
|
1716
|
+
import HarfBuzz00 from '@girs/harfbuzz-0.0';
|
|
1717
|
+
export default HarfBuzz00;
|
|
1718
|
+
}
|
|
1719
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1720
|
+
declare module 'gi://HarfBuzz' {
|
|
1721
|
+
import HarfBuzz00 from '@girs/harfbuzz-0.0';
|
|
1722
|
+
export default HarfBuzz00;
|
|
1723
|
+
}
|
|
1724
|
+
declare module 'gi://IAnjuta?version=3.0' {
|
|
1725
|
+
import IAnjuta30 from '@girs/ianjuta-3.0';
|
|
1726
|
+
export default IAnjuta30;
|
|
1727
|
+
}
|
|
1728
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1729
|
+
declare module 'gi://IAnjuta' {
|
|
1730
|
+
import IAnjuta30 from '@girs/ianjuta-3.0';
|
|
1731
|
+
export default IAnjuta30;
|
|
1732
|
+
}
|
|
1733
|
+
declare module 'gi://IBus?version=1.0' {
|
|
1734
|
+
import IBus10 from '@girs/ibus-1.0';
|
|
1735
|
+
export default IBus10;
|
|
1736
|
+
}
|
|
1737
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1738
|
+
declare module 'gi://IBus' {
|
|
1739
|
+
import IBus10 from '@girs/ibus-1.0';
|
|
1740
|
+
export default IBus10;
|
|
1741
|
+
}
|
|
1742
|
+
declare module 'gi://ICal?version=3.0' {
|
|
1743
|
+
import ICal30 from '@girs/ical-3.0';
|
|
1744
|
+
export default ICal30;
|
|
1745
|
+
}
|
|
1746
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1747
|
+
declare module 'gi://ICal' {
|
|
1748
|
+
import ICal30 from '@girs/ical-3.0';
|
|
1749
|
+
export default ICal30;
|
|
1750
|
+
}
|
|
1751
|
+
declare module 'gi://ICalGLib?version=3.0' {
|
|
1752
|
+
import ICalGLib30 from '@girs/icalglib-3.0';
|
|
1753
|
+
export default ICalGLib30;
|
|
1754
|
+
}
|
|
1755
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1756
|
+
declare module 'gi://ICalGLib' {
|
|
1757
|
+
import ICalGLib30 from '@girs/icalglib-3.0';
|
|
1758
|
+
export default ICalGLib30;
|
|
1759
|
+
}
|
|
1760
|
+
declare module 'gi://Ide?version=1.0' {
|
|
1761
|
+
import Ide10 from '@girs/ide-1.0';
|
|
1762
|
+
export default Ide10;
|
|
1763
|
+
}
|
|
1764
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1765
|
+
declare module 'gi://Ide' {
|
|
1766
|
+
import Ide10 from '@girs/ide-1.0';
|
|
1767
|
+
export default Ide10;
|
|
1768
|
+
}
|
|
1769
|
+
declare module 'gi://JSCore?version=3.0' {
|
|
1770
|
+
import JSCore30 from '@girs/jscore-3.0';
|
|
1771
|
+
export default JSCore30;
|
|
1772
|
+
}
|
|
1773
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1774
|
+
declare module 'gi://JSCore' {
|
|
1775
|
+
import JSCore30 from '@girs/jscore-3.0';
|
|
1776
|
+
export default JSCore30;
|
|
1777
|
+
}
|
|
1778
|
+
declare module 'gi://JavaScriptCore?version=4.0' {
|
|
1779
|
+
import JavaScriptCore40 from '@girs/javascriptcore-4.0';
|
|
1780
|
+
export default JavaScriptCore40;
|
|
1781
|
+
}
|
|
1782
|
+
declare module 'gi://JavaScriptCore?version=4.1' {
|
|
1783
|
+
import JavaScriptCore41 from '@girs/javascriptcore-4.1';
|
|
1784
|
+
export default JavaScriptCore41;
|
|
1785
|
+
}
|
|
1786
|
+
declare module 'gi://JavaScriptCore?version=5.0' {
|
|
1787
|
+
import JavaScriptCore50 from '@girs/javascriptcore-5.0';
|
|
1788
|
+
export default JavaScriptCore50;
|
|
1789
|
+
}
|
|
1790
|
+
declare module 'gi://JavaScriptCore?version=6.0' {
|
|
1791
|
+
import JavaScriptCore60 from '@girs/javascriptcore-6.0';
|
|
1792
|
+
export default JavaScriptCore60;
|
|
1793
|
+
}
|
|
1794
|
+
declare module 'gi://Json?version=1.0' {
|
|
1795
|
+
import Json10 from '@girs/json-1.0';
|
|
1796
|
+
export default Json10;
|
|
1797
|
+
}
|
|
1798
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1799
|
+
declare module 'gi://Json' {
|
|
1800
|
+
import Json10 from '@girs/json-1.0';
|
|
1801
|
+
export default Json10;
|
|
1802
|
+
}
|
|
1803
|
+
declare module 'gi://Jsonrpc?version=1.0' {
|
|
1804
|
+
import Jsonrpc10 from '@girs/jsonrpc-1.0';
|
|
1805
|
+
export default Jsonrpc10;
|
|
1806
|
+
}
|
|
1807
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1808
|
+
declare module 'gi://Jsonrpc' {
|
|
1809
|
+
import Jsonrpc10 from '@girs/jsonrpc-1.0';
|
|
1810
|
+
export default Jsonrpc10;
|
|
1811
|
+
}
|
|
1812
|
+
declare module 'gi://Libmsi?version=1.0' {
|
|
1813
|
+
import Libmsi10 from '@girs/libmsi-1.0';
|
|
1814
|
+
export default Libmsi10;
|
|
1815
|
+
}
|
|
1816
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1817
|
+
declare module 'gi://Libmsi' {
|
|
1818
|
+
import Libmsi10 from '@girs/libmsi-1.0';
|
|
1819
|
+
export default Libmsi10;
|
|
1820
|
+
}
|
|
1821
|
+
declare module 'gi://Libosinfo?version=1.0' {
|
|
1822
|
+
import Libosinfo10 from '@girs/libosinfo-1.0';
|
|
1823
|
+
export default Libosinfo10;
|
|
1824
|
+
}
|
|
1825
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1826
|
+
declare module 'gi://Libosinfo' {
|
|
1827
|
+
import Libosinfo10 from '@girs/libosinfo-1.0';
|
|
1828
|
+
export default Libosinfo10;
|
|
1829
|
+
}
|
|
1830
|
+
declare module 'gi://LibvirtGConfig?version=1.0' {
|
|
1831
|
+
import LibvirtGConfig10 from '@girs/libvirtgconfig-1.0';
|
|
1832
|
+
export default LibvirtGConfig10;
|
|
1833
|
+
}
|
|
1834
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1835
|
+
declare module 'gi://LibvirtGConfig' {
|
|
1836
|
+
import LibvirtGConfig10 from '@girs/libvirtgconfig-1.0';
|
|
1837
|
+
export default LibvirtGConfig10;
|
|
1838
|
+
}
|
|
1839
|
+
declare module 'gi://LibvirtGLib?version=1.0' {
|
|
1840
|
+
import LibvirtGLib10 from '@girs/libvirtglib-1.0';
|
|
1841
|
+
export default LibvirtGLib10;
|
|
1842
|
+
}
|
|
1843
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1844
|
+
declare module 'gi://LibvirtGLib' {
|
|
1845
|
+
import LibvirtGLib10 from '@girs/libvirtglib-1.0';
|
|
1846
|
+
export default LibvirtGLib10;
|
|
1847
|
+
}
|
|
1848
|
+
declare module 'gi://LibvirtGObject?version=1.0' {
|
|
1849
|
+
import LibvirtGObject10 from '@girs/libvirtgobject-1.0';
|
|
1850
|
+
export default LibvirtGObject10;
|
|
1851
|
+
}
|
|
1852
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1853
|
+
declare module 'gi://LibvirtGObject' {
|
|
1854
|
+
import LibvirtGObject10 from '@girs/libvirtgobject-1.0';
|
|
1855
|
+
export default LibvirtGObject10;
|
|
1856
|
+
}
|
|
1857
|
+
declare module 'gi://Manette?version=0.2' {
|
|
1858
|
+
import Manette02 from '@girs/manette-0.2';
|
|
1859
|
+
export default Manette02;
|
|
1860
|
+
}
|
|
1861
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1862
|
+
declare module 'gi://Manette' {
|
|
1863
|
+
import Manette02 from '@girs/manette-0.2';
|
|
1864
|
+
export default Manette02;
|
|
1865
|
+
}
|
|
1866
|
+
declare module 'gi://Mash?version=0.2' {
|
|
1867
|
+
import Mash02 from '@girs/mash-0.2';
|
|
1868
|
+
export default Mash02;
|
|
1869
|
+
}
|
|
1870
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1871
|
+
declare module 'gi://Mash' {
|
|
1872
|
+
import Mash02 from '@girs/mash-0.2';
|
|
1873
|
+
export default Mash02;
|
|
1874
|
+
}
|
|
1875
|
+
declare module 'gi://Mbim?version=1.0' {
|
|
1876
|
+
import Mbim10 from '@girs/mbim-1.0';
|
|
1877
|
+
export default Mbim10;
|
|
1878
|
+
}
|
|
1879
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1880
|
+
declare module 'gi://Mbim' {
|
|
1881
|
+
import Mbim10 from '@girs/mbim-1.0';
|
|
1882
|
+
export default Mbim10;
|
|
1883
|
+
}
|
|
1884
|
+
declare module 'gi://MediaArt?version=1.0' {
|
|
1885
|
+
import MediaArt10 from '@girs/mediaart-1.0';
|
|
1886
|
+
export default MediaArt10;
|
|
1887
|
+
}
|
|
1888
|
+
declare module 'gi://MediaArt?version=2.0' {
|
|
1889
|
+
import MediaArt20 from '@girs/mediaart-2.0';
|
|
1890
|
+
export default MediaArt20;
|
|
1891
|
+
}
|
|
1892
|
+
declare module 'gi://ModemManager?version=1.0' {
|
|
1893
|
+
import ModemManager10 from '@girs/modemmanager-1.0';
|
|
1894
|
+
export default ModemManager10;
|
|
1895
|
+
}
|
|
1896
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1897
|
+
declare module 'gi://ModemManager' {
|
|
1898
|
+
import ModemManager10 from '@girs/modemmanager-1.0';
|
|
1899
|
+
export default ModemManager10;
|
|
1900
|
+
}
|
|
1901
|
+
declare module 'gi://Mx?version=1.0' {
|
|
1902
|
+
import Mx10 from '@girs/mx-1.0';
|
|
1903
|
+
export default Mx10;
|
|
1904
|
+
}
|
|
1905
|
+
declare module 'gi://Mx?version=2.0' {
|
|
1906
|
+
import Mx20 from '@girs/mx-2.0';
|
|
1907
|
+
export default Mx20;
|
|
1908
|
+
}
|
|
1909
|
+
declare module 'gi://MxGtk?version=1.0' {
|
|
1910
|
+
import MxGtk10 from '@girs/mxgtk-1.0';
|
|
1911
|
+
export default MxGtk10;
|
|
1912
|
+
}
|
|
1913
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1914
|
+
declare module 'gi://MxGtk' {
|
|
1915
|
+
import MxGtk10 from '@girs/mxgtk-1.0';
|
|
1916
|
+
export default MxGtk10;
|
|
1917
|
+
}
|
|
1918
|
+
declare module 'gi://NM?version=1.0' {
|
|
1919
|
+
import NM10 from '@girs/nm-1.0';
|
|
1920
|
+
export default NM10;
|
|
1921
|
+
}
|
|
1922
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1923
|
+
declare module 'gi://NM' {
|
|
1924
|
+
import NM10 from '@girs/nm-1.0';
|
|
1925
|
+
export default NM10;
|
|
1926
|
+
}
|
|
1927
|
+
declare module 'gi://NMA?version=1.0' {
|
|
1928
|
+
import NMA10 from '@girs/nma-1.0';
|
|
1929
|
+
export default NMA10;
|
|
1930
|
+
}
|
|
1931
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1932
|
+
declare module 'gi://NMA' {
|
|
1933
|
+
import NMA10 from '@girs/nma-1.0';
|
|
1934
|
+
export default NMA10;
|
|
1935
|
+
}
|
|
1936
|
+
declare module 'gi://NMClient?version=1.0' {
|
|
1937
|
+
import NMClient10 from '@girs/nmclient-1.0';
|
|
1938
|
+
export default NMClient10;
|
|
1939
|
+
}
|
|
1940
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1941
|
+
declare module 'gi://NMClient' {
|
|
1942
|
+
import NMClient10 from '@girs/nmclient-1.0';
|
|
1943
|
+
export default NMClient10;
|
|
1944
|
+
}
|
|
1945
|
+
declare module 'gi://NMGtk?version=1.0' {
|
|
1946
|
+
import NMGtk10 from '@girs/nmgtk-1.0';
|
|
1947
|
+
export default NMGtk10;
|
|
1948
|
+
}
|
|
1949
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1950
|
+
declare module 'gi://NMGtk' {
|
|
1951
|
+
import NMGtk10 from '@girs/nmgtk-1.0';
|
|
1952
|
+
export default NMGtk10;
|
|
1953
|
+
}
|
|
1954
|
+
declare module 'gi://Nautilus?version=3.0' {
|
|
1955
|
+
import Nautilus30 from '@girs/nautilus-3.0';
|
|
1956
|
+
export default Nautilus30;
|
|
1957
|
+
}
|
|
1958
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1959
|
+
declare module 'gi://Nautilus' {
|
|
1960
|
+
import Nautilus30 from '@girs/nautilus-3.0';
|
|
1961
|
+
export default Nautilus30;
|
|
1962
|
+
}
|
|
1963
|
+
declare module 'gi://NetworkManager?version=1.0' {
|
|
1964
|
+
import NetworkManager10 from '@girs/networkmanager-1.0';
|
|
1965
|
+
export default NetworkManager10;
|
|
1966
|
+
}
|
|
1967
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1968
|
+
declare module 'gi://NetworkManager' {
|
|
1969
|
+
import NetworkManager10 from '@girs/networkmanager-1.0';
|
|
1970
|
+
export default NetworkManager10;
|
|
1971
|
+
}
|
|
1972
|
+
declare module 'gi://Nice?version=0.1' {
|
|
1973
|
+
import Nice01 from '@girs/nice-0.1';
|
|
1974
|
+
export default Nice01;
|
|
1975
|
+
}
|
|
1976
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1977
|
+
declare module 'gi://Nice' {
|
|
1978
|
+
import Nice01 from '@girs/nice-0.1';
|
|
1979
|
+
export default Nice01;
|
|
1980
|
+
}
|
|
1981
|
+
declare module 'gi://Notify?version=0.7' {
|
|
1982
|
+
import Notify07 from '@girs/notify-0.7';
|
|
1983
|
+
export default Notify07;
|
|
1984
|
+
}
|
|
1985
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1986
|
+
declare module 'gi://Notify' {
|
|
1987
|
+
import Notify07 from '@girs/notify-0.7';
|
|
1988
|
+
export default Notify07;
|
|
1989
|
+
}
|
|
1990
|
+
declare module 'gi://OSTree?version=1.0' {
|
|
1991
|
+
import OSTree10 from '@girs/ostree-1.0';
|
|
1992
|
+
export default OSTree10;
|
|
1993
|
+
}
|
|
1994
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
1995
|
+
declare module 'gi://OSTree' {
|
|
1996
|
+
import OSTree10 from '@girs/ostree-1.0';
|
|
1997
|
+
export default OSTree10;
|
|
1998
|
+
}
|
|
1999
|
+
declare module 'gi://P11Kit?version=1.0' {
|
|
2000
|
+
import P11Kit10 from '@girs/p11kit-1.0';
|
|
2001
|
+
export default P11Kit10;
|
|
2002
|
+
}
|
|
2003
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2004
|
+
declare module 'gi://P11Kit' {
|
|
2005
|
+
import P11Kit10 from '@girs/p11kit-1.0';
|
|
2006
|
+
export default P11Kit10;
|
|
2007
|
+
}
|
|
2008
|
+
declare module 'gi://PackageKitGlib?version=1.0' {
|
|
2009
|
+
import PackageKitGlib10 from '@girs/packagekitglib-1.0';
|
|
2010
|
+
export default PackageKitGlib10;
|
|
2011
|
+
}
|
|
2012
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2013
|
+
declare module 'gi://PackageKitGlib' {
|
|
2014
|
+
import PackageKitGlib10 from '@girs/packagekitglib-1.0';
|
|
2015
|
+
export default PackageKitGlib10;
|
|
2016
|
+
}
|
|
2017
|
+
declare module 'gi://PackageKitPlugin?version=1.0' {
|
|
2018
|
+
import PackageKitPlugin10 from '@girs/packagekitplugin-1.0';
|
|
2019
|
+
export default PackageKitPlugin10;
|
|
2020
|
+
}
|
|
2021
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2022
|
+
declare module 'gi://PackageKitPlugin' {
|
|
2023
|
+
import PackageKitPlugin10 from '@girs/packagekitplugin-1.0';
|
|
2024
|
+
export default PackageKitPlugin10;
|
|
2025
|
+
}
|
|
2026
|
+
declare module 'gi://PanelApplet?version=4.0' {
|
|
2027
|
+
import PanelApplet40 from '@girs/panelapplet-4.0';
|
|
2028
|
+
export default PanelApplet40;
|
|
2029
|
+
}
|
|
2030
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2031
|
+
declare module 'gi://PanelApplet' {
|
|
2032
|
+
import PanelApplet40 from '@girs/panelapplet-4.0';
|
|
2033
|
+
export default PanelApplet40;
|
|
2034
|
+
}
|
|
2035
|
+
declare module 'gi://Pango?version=1.0' {
|
|
2036
|
+
import Pango10 from '@girs/pango-1.0';
|
|
2037
|
+
export default Pango10;
|
|
2038
|
+
}
|
|
2039
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2040
|
+
declare module 'gi://Pango' {
|
|
2041
|
+
import Pango10 from '@girs/pango-1.0';
|
|
2042
|
+
export default Pango10;
|
|
2043
|
+
}
|
|
2044
|
+
declare module 'gi://PangoCairo?version=1.0' {
|
|
2045
|
+
import PangoCairo10 from '@girs/pangocairo-1.0';
|
|
2046
|
+
export default PangoCairo10;
|
|
2047
|
+
}
|
|
2048
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2049
|
+
declare module 'gi://PangoCairo' {
|
|
2050
|
+
import PangoCairo10 from '@girs/pangocairo-1.0';
|
|
2051
|
+
export default PangoCairo10;
|
|
2052
|
+
}
|
|
2053
|
+
declare module 'gi://PangoFT2?version=1.0' {
|
|
2054
|
+
import PangoFT210 from '@girs/pangoft2-1.0';
|
|
2055
|
+
export default PangoFT210;
|
|
2056
|
+
}
|
|
2057
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2058
|
+
declare module 'gi://PangoFT2' {
|
|
2059
|
+
import PangoFT210 from '@girs/pangoft2-1.0';
|
|
2060
|
+
export default PangoFT210;
|
|
2061
|
+
}
|
|
2062
|
+
declare module 'gi://PangoFc?version=1.0' {
|
|
2063
|
+
import PangoFc10 from '@girs/pangofc-1.0';
|
|
2064
|
+
export default PangoFc10;
|
|
2065
|
+
}
|
|
2066
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2067
|
+
declare module 'gi://PangoFc' {
|
|
2068
|
+
import PangoFc10 from '@girs/pangofc-1.0';
|
|
2069
|
+
export default PangoFc10;
|
|
2070
|
+
}
|
|
2071
|
+
declare module 'gi://PangoOT?version=1.0' {
|
|
2072
|
+
import PangoOT10 from '@girs/pangoot-1.0';
|
|
2073
|
+
export default PangoOT10;
|
|
2074
|
+
}
|
|
2075
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2076
|
+
declare module 'gi://PangoOT' {
|
|
2077
|
+
import PangoOT10 from '@girs/pangoot-1.0';
|
|
2078
|
+
export default PangoOT10;
|
|
2079
|
+
}
|
|
2080
|
+
declare module 'gi://PangoXft?version=1.0' {
|
|
2081
|
+
import PangoXft10 from '@girs/pangoxft-1.0';
|
|
2082
|
+
export default PangoXft10;
|
|
2083
|
+
}
|
|
2084
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2085
|
+
declare module 'gi://PangoXft' {
|
|
2086
|
+
import PangoXft10 from '@girs/pangoxft-1.0';
|
|
2087
|
+
export default PangoXft10;
|
|
2088
|
+
}
|
|
2089
|
+
declare module 'gi://Parquet?version=1.0' {
|
|
2090
|
+
import Parquet10 from '@girs/parquet-1.0';
|
|
2091
|
+
export default Parquet10;
|
|
2092
|
+
}
|
|
2093
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2094
|
+
declare module 'gi://Parquet' {
|
|
2095
|
+
import Parquet10 from '@girs/parquet-1.0';
|
|
2096
|
+
export default Parquet10;
|
|
2097
|
+
}
|
|
2098
|
+
declare module 'gi://Peas?version=1.0' {
|
|
2099
|
+
import Peas10 from '@girs/peas-1.0';
|
|
2100
|
+
export default Peas10;
|
|
2101
|
+
}
|
|
2102
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2103
|
+
declare module 'gi://Peas' {
|
|
2104
|
+
import Peas10 from '@girs/peas-1.0';
|
|
2105
|
+
export default Peas10;
|
|
2106
|
+
}
|
|
2107
|
+
declare module 'gi://PeasGtk?version=1.0' {
|
|
2108
|
+
import PeasGtk10 from '@girs/peasgtk-1.0';
|
|
2109
|
+
export default PeasGtk10;
|
|
2110
|
+
}
|
|
2111
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2112
|
+
declare module 'gi://PeasGtk' {
|
|
2113
|
+
import PeasGtk10 from '@girs/peasgtk-1.0';
|
|
2114
|
+
export default PeasGtk10;
|
|
2115
|
+
}
|
|
2116
|
+
declare module 'gi://Plasma?version=1.0' {
|
|
2117
|
+
import Plasma10 from '@girs/plasma-1.0';
|
|
2118
|
+
export default Plasma10;
|
|
2119
|
+
}
|
|
2120
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2121
|
+
declare module 'gi://Plasma' {
|
|
2122
|
+
import Plasma10 from '@girs/plasma-1.0';
|
|
2123
|
+
export default Plasma10;
|
|
2124
|
+
}
|
|
2125
|
+
declare module 'gi://Pnl?version=1.0' {
|
|
2126
|
+
import Pnl10 from '@girs/pnl-1.0';
|
|
2127
|
+
export default Pnl10;
|
|
2128
|
+
}
|
|
2129
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2130
|
+
declare module 'gi://Pnl' {
|
|
2131
|
+
import Pnl10 from '@girs/pnl-1.0';
|
|
2132
|
+
export default Pnl10;
|
|
2133
|
+
}
|
|
2134
|
+
declare module 'gi://Polkit?version=1.0' {
|
|
2135
|
+
import Polkit10 from '@girs/polkit-1.0';
|
|
2136
|
+
export default Polkit10;
|
|
2137
|
+
}
|
|
2138
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2139
|
+
declare module 'gi://Polkit' {
|
|
2140
|
+
import Polkit10 from '@girs/polkit-1.0';
|
|
2141
|
+
export default Polkit10;
|
|
2142
|
+
}
|
|
2143
|
+
declare module 'gi://PolkitAgent?version=1.0' {
|
|
2144
|
+
import PolkitAgent10 from '@girs/polkitagent-1.0';
|
|
2145
|
+
export default PolkitAgent10;
|
|
2146
|
+
}
|
|
2147
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2148
|
+
declare module 'gi://PolkitAgent' {
|
|
2149
|
+
import PolkitAgent10 from '@girs/polkitagent-1.0';
|
|
2150
|
+
export default PolkitAgent10;
|
|
2151
|
+
}
|
|
2152
|
+
declare module 'gi://Poppler?version=0.18' {
|
|
2153
|
+
import Poppler018 from '@girs/poppler-0.18';
|
|
2154
|
+
export default Poppler018;
|
|
2155
|
+
}
|
|
2156
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2157
|
+
declare module 'gi://Poppler' {
|
|
2158
|
+
import Poppler018 from '@girs/poppler-0.18';
|
|
2159
|
+
export default Poppler018;
|
|
2160
|
+
}
|
|
2161
|
+
declare module 'gi://Qmi?version=1.0' {
|
|
2162
|
+
import Qmi10 from '@girs/qmi-1.0';
|
|
2163
|
+
export default Qmi10;
|
|
2164
|
+
}
|
|
2165
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2166
|
+
declare module 'gi://Qmi' {
|
|
2167
|
+
import Qmi10 from '@girs/qmi-1.0';
|
|
2168
|
+
export default Qmi10;
|
|
2169
|
+
}
|
|
2170
|
+
declare module 'gi://Qrtr?version=1.0' {
|
|
2171
|
+
import Qrtr10 from '@girs/qrtr-1.0';
|
|
2172
|
+
export default Qrtr10;
|
|
2173
|
+
}
|
|
2174
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2175
|
+
declare module 'gi://Qrtr' {
|
|
2176
|
+
import Qrtr10 from '@girs/qrtr-1.0';
|
|
2177
|
+
export default Qrtr10;
|
|
2178
|
+
}
|
|
2179
|
+
declare module 'gi://Rest?version=0.7' {
|
|
2180
|
+
import Rest07 from '@girs/rest-0.7';
|
|
2181
|
+
export default Rest07;
|
|
2182
|
+
}
|
|
2183
|
+
declare module 'gi://Rest?version=1.0' {
|
|
2184
|
+
import Rest10 from '@girs/rest-1.0';
|
|
2185
|
+
export default Rest10;
|
|
2186
|
+
}
|
|
2187
|
+
declare module 'gi://RestExtras?version=0.7' {
|
|
2188
|
+
import RestExtras07 from '@girs/restextras-0.7';
|
|
2189
|
+
export default RestExtras07;
|
|
2190
|
+
}
|
|
2191
|
+
declare module 'gi://RestExtras?version=1.0' {
|
|
2192
|
+
import RestExtras10 from '@girs/restextras-1.0';
|
|
2193
|
+
export default RestExtras10;
|
|
2194
|
+
}
|
|
2195
|
+
declare module 'gi://Retro?version=0.14' {
|
|
2196
|
+
import Retro014 from '@girs/retro-0.14';
|
|
2197
|
+
export default Retro014;
|
|
2198
|
+
}
|
|
2199
|
+
declare module 'gi://Retro?version=1' {
|
|
2200
|
+
import Retro1 from '@girs/retro-1';
|
|
2201
|
+
export default Retro1;
|
|
2202
|
+
}
|
|
2203
|
+
declare module 'gi://Retro?version=2' {
|
|
2204
|
+
import Retro2 from '@girs/retro-2';
|
|
2205
|
+
export default Retro2;
|
|
2206
|
+
}
|
|
2207
|
+
declare module 'gi://Rsvg?version=2.0' {
|
|
2208
|
+
import Rsvg20 from '@girs/rsvg-2.0';
|
|
2209
|
+
export default Rsvg20;
|
|
2210
|
+
}
|
|
2211
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2212
|
+
declare module 'gi://Rsvg' {
|
|
2213
|
+
import Rsvg20 from '@girs/rsvg-2.0';
|
|
2214
|
+
export default Rsvg20;
|
|
2215
|
+
}
|
|
2216
|
+
declare module 'gi://RygelCore?version=2.6' {
|
|
2217
|
+
import RygelCore26 from '@girs/rygelcore-2.6';
|
|
2218
|
+
export default RygelCore26;
|
|
2219
|
+
}
|
|
2220
|
+
declare module 'gi://RygelCore?version=2.8' {
|
|
2221
|
+
import RygelCore28 from '@girs/rygelcore-2.8';
|
|
2222
|
+
export default RygelCore28;
|
|
2223
|
+
}
|
|
2224
|
+
declare module 'gi://RygelRenderer?version=2.6' {
|
|
2225
|
+
import RygelRenderer26 from '@girs/rygelrenderer-2.6';
|
|
2226
|
+
export default RygelRenderer26;
|
|
2227
|
+
}
|
|
2228
|
+
declare module 'gi://RygelRenderer?version=2.8' {
|
|
2229
|
+
import RygelRenderer28 from '@girs/rygelrenderer-2.8';
|
|
2230
|
+
export default RygelRenderer28;
|
|
2231
|
+
}
|
|
2232
|
+
declare module 'gi://RygelRendererGst?version=2.6' {
|
|
2233
|
+
import RygelRendererGst26 from '@girs/rygelrenderergst-2.6';
|
|
2234
|
+
export default RygelRendererGst26;
|
|
2235
|
+
}
|
|
2236
|
+
declare module 'gi://RygelRendererGst?version=2.8' {
|
|
2237
|
+
import RygelRendererGst28 from '@girs/rygelrenderergst-2.8';
|
|
2238
|
+
export default RygelRendererGst28;
|
|
2239
|
+
}
|
|
2240
|
+
declare module 'gi://RygelServer?version=2.6' {
|
|
2241
|
+
import RygelServer26 from '@girs/rygelserver-2.6';
|
|
2242
|
+
export default RygelServer26;
|
|
2243
|
+
}
|
|
2244
|
+
declare module 'gi://RygelServer?version=2.8' {
|
|
2245
|
+
import RygelServer28 from '@girs/rygelserver-2.8';
|
|
2246
|
+
export default RygelServer28;
|
|
2247
|
+
}
|
|
2248
|
+
declare module 'gi://Secret?version=1' {
|
|
2249
|
+
import Secret1 from '@girs/secret-1';
|
|
2250
|
+
export default Secret1;
|
|
2251
|
+
}
|
|
2252
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2253
|
+
declare module 'gi://Secret' {
|
|
2254
|
+
import Secret1 from '@girs/secret-1';
|
|
2255
|
+
export default Secret1;
|
|
2256
|
+
}
|
|
2257
|
+
declare module 'gi://SecretUnstable?version=0' {
|
|
2258
|
+
import SecretUnstable0 from '@girs/secretunstable-0';
|
|
2259
|
+
export default SecretUnstable0;
|
|
2260
|
+
}
|
|
2261
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2262
|
+
declare module 'gi://SecretUnstable' {
|
|
2263
|
+
import SecretUnstable0 from '@girs/secretunstable-0';
|
|
2264
|
+
export default SecretUnstable0;
|
|
2265
|
+
}
|
|
2266
|
+
declare module 'gi://Shumate?version=1.0' {
|
|
2267
|
+
import Shumate10 from '@girs/shumate-1.0';
|
|
2268
|
+
export default Shumate10;
|
|
2269
|
+
}
|
|
2270
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2271
|
+
declare module 'gi://Shumate' {
|
|
2272
|
+
import Shumate10 from '@girs/shumate-1.0';
|
|
2273
|
+
export default Shumate10;
|
|
2274
|
+
}
|
|
2275
|
+
declare module 'gi://Signon?version=2.0' {
|
|
2276
|
+
import Signon20 from '@girs/signon-2.0';
|
|
2277
|
+
export default Signon20;
|
|
2278
|
+
}
|
|
2279
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2280
|
+
declare module 'gi://Signon' {
|
|
2281
|
+
import Signon20 from '@girs/signon-2.0';
|
|
2282
|
+
export default Signon20;
|
|
2283
|
+
}
|
|
2284
|
+
declare module 'gi://Snapd?version=1' {
|
|
2285
|
+
import Snapd1 from '@girs/snapd-1';
|
|
2286
|
+
export default Snapd1;
|
|
2287
|
+
}
|
|
2288
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2289
|
+
declare module 'gi://Snapd' {
|
|
2290
|
+
import Snapd1 from '@girs/snapd-1';
|
|
2291
|
+
export default Snapd1;
|
|
2292
|
+
}
|
|
2293
|
+
declare module 'gi://Soup?version=2.4' {
|
|
2294
|
+
import Soup24 from '@girs/soup-2.4';
|
|
2295
|
+
export default Soup24;
|
|
2296
|
+
}
|
|
2297
|
+
declare module 'gi://Soup?version=3.0' {
|
|
2298
|
+
import Soup30 from '@girs/soup-3.0';
|
|
2299
|
+
export default Soup30;
|
|
2300
|
+
}
|
|
2301
|
+
declare module 'gi://SoupGNOME?version=2.4' {
|
|
2302
|
+
import SoupGNOME24 from '@girs/soupgnome-2.4';
|
|
2303
|
+
export default SoupGNOME24;
|
|
2304
|
+
}
|
|
2305
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2306
|
+
declare module 'gi://SoupGNOME' {
|
|
2307
|
+
import SoupGNOME24 from '@girs/soupgnome-2.4';
|
|
2308
|
+
export default SoupGNOME24;
|
|
2309
|
+
}
|
|
2310
|
+
declare module 'gi://SpiceClientGLib?version=2.0' {
|
|
2311
|
+
import SpiceClientGLib20 from '@girs/spiceclientglib-2.0';
|
|
2312
|
+
export default SpiceClientGLib20;
|
|
2313
|
+
}
|
|
2314
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2315
|
+
declare module 'gi://SpiceClientGLib' {
|
|
2316
|
+
import SpiceClientGLib20 from '@girs/spiceclientglib-2.0';
|
|
2317
|
+
export default SpiceClientGLib20;
|
|
2318
|
+
}
|
|
2319
|
+
declare module 'gi://SpiceClientGtk?version=3.0' {
|
|
2320
|
+
import SpiceClientGtk30 from '@girs/spiceclientgtk-3.0';
|
|
2321
|
+
export default SpiceClientGtk30;
|
|
2322
|
+
}
|
|
2323
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2324
|
+
declare module 'gi://SpiceClientGtk' {
|
|
2325
|
+
import SpiceClientGtk30 from '@girs/spiceclientgtk-3.0';
|
|
2326
|
+
export default SpiceClientGtk30;
|
|
2327
|
+
}
|
|
2328
|
+
declare module 'gi://Sushi?version=1.0' {
|
|
2329
|
+
import Sushi10 from '@girs/sushi-1.0';
|
|
2330
|
+
export default Sushi10;
|
|
2331
|
+
}
|
|
2332
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2333
|
+
declare module 'gi://Sushi' {
|
|
2334
|
+
import Sushi10 from '@girs/sushi-1.0';
|
|
2335
|
+
export default Sushi10;
|
|
2336
|
+
}
|
|
2337
|
+
declare module 'gi://TelepathyFarstream?version=0.6' {
|
|
2338
|
+
import TelepathyFarstream06 from '@girs/telepathyfarstream-0.6';
|
|
2339
|
+
export default TelepathyFarstream06;
|
|
2340
|
+
}
|
|
2341
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2342
|
+
declare module 'gi://TelepathyFarstream' {
|
|
2343
|
+
import TelepathyFarstream06 from '@girs/telepathyfarstream-0.6';
|
|
2344
|
+
export default TelepathyFarstream06;
|
|
2345
|
+
}
|
|
2346
|
+
declare module 'gi://TelepathyGLib?version=0.12' {
|
|
2347
|
+
import TelepathyGLib012 from '@girs/telepathyglib-0.12';
|
|
2348
|
+
export default TelepathyGLib012;
|
|
2349
|
+
}
|
|
2350
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2351
|
+
declare module 'gi://TelepathyGLib' {
|
|
2352
|
+
import TelepathyGLib012 from '@girs/telepathyglib-0.12';
|
|
2353
|
+
export default TelepathyGLib012;
|
|
2354
|
+
}
|
|
2355
|
+
declare module 'gi://TelepathyLogger?version=0.2' {
|
|
2356
|
+
import TelepathyLogger02 from '@girs/telepathylogger-0.2';
|
|
2357
|
+
export default TelepathyLogger02;
|
|
2358
|
+
}
|
|
2359
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2360
|
+
declare module 'gi://TelepathyLogger' {
|
|
2361
|
+
import TelepathyLogger02 from '@girs/telepathylogger-0.2';
|
|
2362
|
+
export default TelepathyLogger02;
|
|
2363
|
+
}
|
|
2364
|
+
declare module 'gi://Template?version=1.0' {
|
|
2365
|
+
import Template10 from '@girs/template-1.0';
|
|
2366
|
+
export default Template10;
|
|
2367
|
+
}
|
|
2368
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2369
|
+
declare module 'gi://Template' {
|
|
2370
|
+
import Template10 from '@girs/template-1.0';
|
|
2371
|
+
export default Template10;
|
|
2372
|
+
}
|
|
2373
|
+
declare module 'gi://Tepl?version=4' {
|
|
2374
|
+
import Tepl4 from '@girs/tepl-4';
|
|
2375
|
+
export default Tepl4;
|
|
2376
|
+
}
|
|
2377
|
+
declare module 'gi://Tepl?version=5' {
|
|
2378
|
+
import Tepl5 from '@girs/tepl-5';
|
|
2379
|
+
export default Tepl5;
|
|
2380
|
+
}
|
|
2381
|
+
declare module 'gi://Tepl?version=6' {
|
|
2382
|
+
import Tepl6 from '@girs/tepl-6';
|
|
2383
|
+
export default Tepl6;
|
|
2384
|
+
}
|
|
2385
|
+
declare module 'gi://TimezoneMap?version=1.0' {
|
|
2386
|
+
import TimezoneMap10 from '@girs/timezonemap-1.0';
|
|
2387
|
+
export default TimezoneMap10;
|
|
2388
|
+
}
|
|
2389
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2390
|
+
declare module 'gi://TimezoneMap' {
|
|
2391
|
+
import TimezoneMap10 from '@girs/timezonemap-1.0';
|
|
2392
|
+
export default TimezoneMap10;
|
|
2393
|
+
}
|
|
2394
|
+
declare module 'gi://Totem?version=1.0' {
|
|
2395
|
+
import Totem10 from '@girs/totem-1.0';
|
|
2396
|
+
export default Totem10;
|
|
2397
|
+
}
|
|
2398
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2399
|
+
declare module 'gi://Totem' {
|
|
2400
|
+
import Totem10 from '@girs/totem-1.0';
|
|
2401
|
+
export default Totem10;
|
|
2402
|
+
}
|
|
2403
|
+
declare module 'gi://TotemPlParser?version=1.0' {
|
|
2404
|
+
import TotemPlParser10 from '@girs/totemplparser-1.0';
|
|
2405
|
+
export default TotemPlParser10;
|
|
2406
|
+
}
|
|
2407
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2408
|
+
declare module 'gi://TotemPlParser' {
|
|
2409
|
+
import TotemPlParser10 from '@girs/totemplparser-1.0';
|
|
2410
|
+
export default TotemPlParser10;
|
|
2411
|
+
}
|
|
2412
|
+
declare module 'gi://Tracker?version=1.0' {
|
|
2413
|
+
import Tracker10 from '@girs/tracker-1.0';
|
|
2414
|
+
export default Tracker10;
|
|
2415
|
+
}
|
|
2416
|
+
declare module 'gi://Tracker?version=2.0' {
|
|
2417
|
+
import Tracker20 from '@girs/tracker-2.0';
|
|
2418
|
+
export default Tracker20;
|
|
2419
|
+
}
|
|
2420
|
+
declare module 'gi://Tracker?version=3.0' {
|
|
2421
|
+
import Tracker30 from '@girs/tracker-3.0';
|
|
2422
|
+
export default Tracker30;
|
|
2423
|
+
}
|
|
2424
|
+
declare module 'gi://TrackerControl?version=1.0' {
|
|
2425
|
+
import TrackerControl10 from '@girs/trackercontrol-1.0';
|
|
2426
|
+
export default TrackerControl10;
|
|
2427
|
+
}
|
|
2428
|
+
declare module 'gi://TrackerControl?version=2.0' {
|
|
2429
|
+
import TrackerControl20 from '@girs/trackercontrol-2.0';
|
|
2430
|
+
export default TrackerControl20;
|
|
2431
|
+
}
|
|
2432
|
+
declare module 'gi://TrackerMiner?version=1.0' {
|
|
2433
|
+
import TrackerMiner10 from '@girs/trackerminer-1.0';
|
|
2434
|
+
export default TrackerMiner10;
|
|
2435
|
+
}
|
|
2436
|
+
declare module 'gi://TrackerMiner?version=2.0' {
|
|
2437
|
+
import TrackerMiner20 from '@girs/trackerminer-2.0';
|
|
2438
|
+
export default TrackerMiner20;
|
|
2439
|
+
}
|
|
2440
|
+
declare module 'gi://UDisks?version=2.0' {
|
|
2441
|
+
import UDisks20 from '@girs/udisks-2.0';
|
|
2442
|
+
export default UDisks20;
|
|
2443
|
+
}
|
|
2444
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2445
|
+
declare module 'gi://UDisks' {
|
|
2446
|
+
import UDisks20 from '@girs/udisks-2.0';
|
|
2447
|
+
export default UDisks20;
|
|
2448
|
+
}
|
|
2449
|
+
declare module 'gi://UPowerGlib?version=1.0' {
|
|
2450
|
+
import UPowerGlib10 from '@girs/upowerglib-1.0';
|
|
2451
|
+
export default UPowerGlib10;
|
|
2452
|
+
}
|
|
2453
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2454
|
+
declare module 'gi://UPowerGlib' {
|
|
2455
|
+
import UPowerGlib10 from '@girs/upowerglib-1.0';
|
|
2456
|
+
export default UPowerGlib10;
|
|
2457
|
+
}
|
|
2458
|
+
declare module 'gi://Uhm?version=0.0' {
|
|
2459
|
+
import Uhm00 from '@girs/uhm-0.0';
|
|
2460
|
+
export default Uhm00;
|
|
2461
|
+
}
|
|
2462
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2463
|
+
declare module 'gi://Uhm' {
|
|
2464
|
+
import Uhm00 from '@girs/uhm-0.0';
|
|
2465
|
+
export default Uhm00;
|
|
2466
|
+
}
|
|
2467
|
+
declare module 'gi://Unique?version=3.0' {
|
|
2468
|
+
import Unique30 from '@girs/unique-3.0';
|
|
2469
|
+
export default Unique30;
|
|
2470
|
+
}
|
|
2471
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2472
|
+
declare module 'gi://Unique' {
|
|
2473
|
+
import Unique30 from '@girs/unique-3.0';
|
|
2474
|
+
export default Unique30;
|
|
2475
|
+
}
|
|
2476
|
+
declare module 'gi://Unity?version=6.0' {
|
|
2477
|
+
import Unity60 from '@girs/unity-6.0';
|
|
2478
|
+
export default Unity60;
|
|
2479
|
+
}
|
|
2480
|
+
declare module 'gi://Unity?version=7.0' {
|
|
2481
|
+
import Unity70 from '@girs/unity-7.0';
|
|
2482
|
+
export default Unity70;
|
|
2483
|
+
}
|
|
2484
|
+
declare module 'gi://UnityExtras?version=7.0' {
|
|
2485
|
+
import UnityExtras70 from '@girs/unityextras-7.0';
|
|
2486
|
+
export default UnityExtras70;
|
|
2487
|
+
}
|
|
2488
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2489
|
+
declare module 'gi://UnityExtras' {
|
|
2490
|
+
import UnityExtras70 from '@girs/unityextras-7.0';
|
|
2491
|
+
export default UnityExtras70;
|
|
2492
|
+
}
|
|
2493
|
+
declare module 'gi://Vda?version=1' {
|
|
2494
|
+
import Vda1 from '@girs/vda-1';
|
|
2495
|
+
export default Vda1;
|
|
2496
|
+
}
|
|
2497
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2498
|
+
declare module 'gi://Vda' {
|
|
2499
|
+
import Vda1 from '@girs/vda-1';
|
|
2500
|
+
export default Vda1;
|
|
2501
|
+
}
|
|
2502
|
+
declare module 'gi://Vgda?version=1' {
|
|
2503
|
+
import Vgda1 from '@girs/vgda-1';
|
|
2504
|
+
export default Vgda1;
|
|
2505
|
+
}
|
|
2506
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2507
|
+
declare module 'gi://Vgda' {
|
|
2508
|
+
import Vgda1 from '@girs/vgda-1';
|
|
2509
|
+
export default Vgda1;
|
|
2510
|
+
}
|
|
2511
|
+
declare module 'gi://Vgpg?version=1' {
|
|
2512
|
+
import Vgpg1 from '@girs/vgpg-1';
|
|
2513
|
+
export default Vgpg1;
|
|
2514
|
+
}
|
|
2515
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2516
|
+
declare module 'gi://Vgpg' {
|
|
2517
|
+
import Vgpg1 from '@girs/vgpg-1';
|
|
2518
|
+
export default Vgpg1;
|
|
2519
|
+
}
|
|
2520
|
+
declare module 'gi://Vgsl?version=1' {
|
|
2521
|
+
import Vgsl1 from '@girs/vgsl-1';
|
|
2522
|
+
export default Vgsl1;
|
|
2523
|
+
}
|
|
2524
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2525
|
+
declare module 'gi://Vgsl' {
|
|
2526
|
+
import Vgsl1 from '@girs/vgsl-1';
|
|
2527
|
+
export default Vgsl1;
|
|
2528
|
+
}
|
|
2529
|
+
declare module 'gi://Vips?version=8.0' {
|
|
2530
|
+
import Vips80 from '@girs/vips-8.0';
|
|
2531
|
+
export default Vips80;
|
|
2532
|
+
}
|
|
2533
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2534
|
+
declare module 'gi://Vips' {
|
|
2535
|
+
import Vips80 from '@girs/vips-8.0';
|
|
2536
|
+
export default Vips80;
|
|
2537
|
+
}
|
|
2538
|
+
declare module 'gi://Vpg?version=1' {
|
|
2539
|
+
import Vpg1 from '@girs/vpg-1';
|
|
2540
|
+
export default Vpg1;
|
|
2541
|
+
}
|
|
2542
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2543
|
+
declare module 'gi://Vpg' {
|
|
2544
|
+
import Vpg1 from '@girs/vpg-1';
|
|
2545
|
+
export default Vpg1;
|
|
2546
|
+
}
|
|
2547
|
+
declare module 'gi://Vsqlite?version=1' {
|
|
2548
|
+
import Vsqlite1 from '@girs/vsqlite-1';
|
|
2549
|
+
export default Vsqlite1;
|
|
2550
|
+
}
|
|
2551
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2552
|
+
declare module 'gi://Vsqlite' {
|
|
2553
|
+
import Vsqlite1 from '@girs/vsqlite-1';
|
|
2554
|
+
export default Vsqlite1;
|
|
2555
|
+
}
|
|
2556
|
+
declare module 'gi://Vte?version=2.91' {
|
|
2557
|
+
import Vte291 from '@girs/vte-2.91';
|
|
2558
|
+
export default Vte291;
|
|
2559
|
+
}
|
|
2560
|
+
declare module 'gi://Vte?version=4-2.91' {
|
|
2561
|
+
import Vte4291 from '@girs/vte-4-2.91';
|
|
2562
|
+
export default Vte4291;
|
|
2563
|
+
}
|
|
2564
|
+
declare module 'gi://Vulkan?version=1.0' {
|
|
2565
|
+
import Vulkan10 from '@girs/vulkan-1.0';
|
|
2566
|
+
export default Vulkan10;
|
|
2567
|
+
}
|
|
2568
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2569
|
+
declare module 'gi://Vulkan' {
|
|
2570
|
+
import Vulkan10 from '@girs/vulkan-1.0';
|
|
2571
|
+
export default Vulkan10;
|
|
2572
|
+
}
|
|
2573
|
+
declare module 'gi://WebKit?version=6.0' {
|
|
2574
|
+
import WebKit60 from '@girs/webkit-6.0';
|
|
2575
|
+
export default WebKit60;
|
|
2576
|
+
}
|
|
2577
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2578
|
+
declare module 'gi://WebKit' {
|
|
2579
|
+
import WebKit60 from '@girs/webkit-6.0';
|
|
2580
|
+
export default WebKit60;
|
|
2581
|
+
}
|
|
2582
|
+
declare module 'gi://WebKit2?version=4.0' {
|
|
2583
|
+
import WebKit240 from '@girs/webkit2-4.0';
|
|
2584
|
+
export default WebKit240;
|
|
2585
|
+
}
|
|
2586
|
+
declare module 'gi://WebKit2?version=4.1' {
|
|
2587
|
+
import WebKit241 from '@girs/webkit2-4.1';
|
|
2588
|
+
export default WebKit241;
|
|
2589
|
+
}
|
|
2590
|
+
declare module 'gi://WebKit2?version=5.0' {
|
|
2591
|
+
import WebKit250 from '@girs/webkit2-5.0';
|
|
2592
|
+
export default WebKit250;
|
|
2593
|
+
}
|
|
2594
|
+
declare module 'gi://WebKit2WebExtension?version=4.0' {
|
|
2595
|
+
import WebKit2WebExtension40 from '@girs/webkit2webextension-4.0';
|
|
2596
|
+
export default WebKit2WebExtension40;
|
|
2597
|
+
}
|
|
2598
|
+
declare module 'gi://WebKit2WebExtension?version=4.1' {
|
|
2599
|
+
import WebKit2WebExtension41 from '@girs/webkit2webextension-4.1';
|
|
2600
|
+
export default WebKit2WebExtension41;
|
|
2601
|
+
}
|
|
2602
|
+
declare module 'gi://WebKit2WebExtension?version=5.0' {
|
|
2603
|
+
import WebKit2WebExtension50 from '@girs/webkit2webextension-5.0';
|
|
2604
|
+
export default WebKit2WebExtension50;
|
|
2605
|
+
}
|
|
2606
|
+
declare module 'gi://WebKitWebExtension?version=6.0' {
|
|
2607
|
+
import WebKitWebExtension60 from '@girs/webkitwebextension-6.0';
|
|
2608
|
+
export default WebKitWebExtension60;
|
|
2609
|
+
}
|
|
2610
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2611
|
+
declare module 'gi://WebKitWebExtension' {
|
|
2612
|
+
import WebKitWebExtension60 from '@girs/webkitwebextension-6.0';
|
|
2613
|
+
export default WebKitWebExtension60;
|
|
2614
|
+
}
|
|
2615
|
+
declare module 'gi://Wnck?version=3.0' {
|
|
2616
|
+
import Wnck30 from '@girs/wnck-3.0';
|
|
2617
|
+
export default Wnck30;
|
|
2618
|
+
}
|
|
2619
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2620
|
+
declare module 'gi://Wnck' {
|
|
2621
|
+
import Wnck30 from '@girs/wnck-3.0';
|
|
2622
|
+
export default Wnck30;
|
|
2623
|
+
}
|
|
2624
|
+
declare module 'gi://Xdp?version=1.0' {
|
|
2625
|
+
import Xdp10 from '@girs/xdp-1.0';
|
|
2626
|
+
export default Xdp10;
|
|
2627
|
+
}
|
|
2628
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2629
|
+
declare module 'gi://Xdp' {
|
|
2630
|
+
import Xdp10 from '@girs/xdp-1.0';
|
|
2631
|
+
export default Xdp10;
|
|
2632
|
+
}
|
|
2633
|
+
declare module 'gi://XdpGtk3?version=1.0' {
|
|
2634
|
+
import XdpGtk310 from '@girs/xdpgtk3-1.0';
|
|
2635
|
+
export default XdpGtk310;
|
|
2636
|
+
}
|
|
2637
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2638
|
+
declare module 'gi://XdpGtk3' {
|
|
2639
|
+
import XdpGtk310 from '@girs/xdpgtk3-1.0';
|
|
2640
|
+
export default XdpGtk310;
|
|
2641
|
+
}
|
|
2642
|
+
declare module 'gi://XdpGtk4?version=1.0' {
|
|
2643
|
+
import XdpGtk410 from '@girs/xdpgtk4-1.0';
|
|
2644
|
+
export default XdpGtk410;
|
|
2645
|
+
}
|
|
2646
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2647
|
+
declare module 'gi://XdpGtk4' {
|
|
2648
|
+
import XdpGtk410 from '@girs/xdpgtk4-1.0';
|
|
2649
|
+
export default XdpGtk410;
|
|
2650
|
+
}
|
|
2651
|
+
declare module 'gi://Xkl?version=1.0' {
|
|
2652
|
+
import Xkl10 from '@girs/xkl-1.0';
|
|
2653
|
+
export default Xkl10;
|
|
2654
|
+
}
|
|
2655
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2656
|
+
declare module 'gi://Xkl' {
|
|
2657
|
+
import Xkl10 from '@girs/xkl-1.0';
|
|
2658
|
+
export default Xkl10;
|
|
2659
|
+
}
|
|
2660
|
+
declare module 'gi://Zeitgeist?version=2.0' {
|
|
2661
|
+
import Zeitgeist20 from '@girs/zeitgeist-2.0';
|
|
2662
|
+
export default Zeitgeist20;
|
|
2663
|
+
}
|
|
2664
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2665
|
+
declare module 'gi://Zeitgeist' {
|
|
2666
|
+
import Zeitgeist20 from '@girs/zeitgeist-2.0';
|
|
2667
|
+
export default Zeitgeist20;
|
|
2668
|
+
}
|
|
2669
|
+
declare module 'gi://Zpj?version=0.0' {
|
|
2670
|
+
import Zpj00 from '@girs/zpj-0.0';
|
|
2671
|
+
export default Zpj00;
|
|
2672
|
+
}
|
|
2673
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2674
|
+
declare module 'gi://Zpj' {
|
|
2675
|
+
import Zpj00 from '@girs/zpj-0.0';
|
|
2676
|
+
export default Zpj00;
|
|
2677
|
+
}
|
|
2678
|
+
declare module 'gi://cairo?version=1.0' {
|
|
2679
|
+
import Cairo10 from '@girs/cairo-1.0';
|
|
2680
|
+
export default Cairo10;
|
|
2681
|
+
}
|
|
2682
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2683
|
+
declare module 'gi://cairo' {
|
|
2684
|
+
import Cairo10 from '@girs/cairo-1.0';
|
|
2685
|
+
export default Cairo10;
|
|
2686
|
+
}
|
|
2687
|
+
declare module 'gi://fontconfig?version=2.0' {
|
|
2688
|
+
import Fontconfig20 from '@girs/fontconfig-2.0';
|
|
2689
|
+
export default Fontconfig20;
|
|
2690
|
+
}
|
|
2691
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2692
|
+
declare module 'gi://fontconfig' {
|
|
2693
|
+
import Fontconfig20 from '@girs/fontconfig-2.0';
|
|
2694
|
+
export default Fontconfig20;
|
|
2695
|
+
}
|
|
2696
|
+
declare module 'gi://freetype2?version=2.0' {
|
|
2697
|
+
import Freetype220 from '@girs/freetype2-2.0';
|
|
2698
|
+
export default Freetype220;
|
|
2699
|
+
}
|
|
2700
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2701
|
+
declare module 'gi://freetype2' {
|
|
2702
|
+
import Freetype220 from '@girs/freetype2-2.0';
|
|
2703
|
+
export default Freetype220;
|
|
2704
|
+
}
|
|
2705
|
+
declare module 'gi://gSignon?version=1.0' {
|
|
2706
|
+
import GSignon10 from '@girs/gsignon-1.0';
|
|
2707
|
+
export default GSignon10;
|
|
2708
|
+
}
|
|
2709
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2710
|
+
declare module 'gi://gSignon' {
|
|
2711
|
+
import GSignon10 from '@girs/gsignon-1.0';
|
|
2712
|
+
export default GSignon10;
|
|
2713
|
+
}
|
|
2714
|
+
declare module 'gi://libxml2?version=2.0' {
|
|
2715
|
+
import Libxml220 from '@girs/libxml2-2.0';
|
|
2716
|
+
export default Libxml220;
|
|
2717
|
+
}
|
|
2718
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2719
|
+
declare module 'gi://libxml2' {
|
|
2720
|
+
import Libxml220 from '@girs/libxml2-2.0';
|
|
2721
|
+
export default Libxml220;
|
|
2722
|
+
}
|
|
2723
|
+
declare module 'gi://win32?version=1.0' {
|
|
2724
|
+
import Win3210 from '@girs/win32-1.0';
|
|
2725
|
+
export default Win3210;
|
|
2726
|
+
}
|
|
2727
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2728
|
+
declare module 'gi://win32' {
|
|
2729
|
+
import Win3210 from '@girs/win32-1.0';
|
|
2730
|
+
export default Win3210;
|
|
2731
|
+
}
|
|
2732
|
+
declare module 'gi://xfixes?version=4.0' {
|
|
2733
|
+
import Xfixes40 from '@girs/xfixes-4.0';
|
|
2734
|
+
export default Xfixes40;
|
|
2735
|
+
}
|
|
2736
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2737
|
+
declare module 'gi://xfixes' {
|
|
2738
|
+
import Xfixes40 from '@girs/xfixes-4.0';
|
|
2739
|
+
export default Xfixes40;
|
|
2740
|
+
}
|
|
2741
|
+
declare module 'gi://xft?version=2.0' {
|
|
2742
|
+
import Xft20 from '@girs/xft-2.0';
|
|
2743
|
+
export default Xft20;
|
|
2744
|
+
}
|
|
2745
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2746
|
+
declare module 'gi://xft' {
|
|
2747
|
+
import Xft20 from '@girs/xft-2.0';
|
|
2748
|
+
export default Xft20;
|
|
2749
|
+
}
|
|
2750
|
+
declare module 'gi://xlib?version=2.0' {
|
|
2751
|
+
import Xlib20 from '@girs/xlib-2.0';
|
|
2752
|
+
export default Xlib20;
|
|
2753
|
+
}
|
|
2754
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2755
|
+
declare module 'gi://xlib' {
|
|
2756
|
+
import Xlib20 from '@girs/xlib-2.0';
|
|
2757
|
+
export default Xlib20;
|
|
2758
|
+
}
|
|
2759
|
+
declare module 'gi://xrandr?version=1.3' {
|
|
2760
|
+
import Xrandr13 from '@girs/xrandr-1.3';
|
|
2761
|
+
export default Xrandr13;
|
|
2762
|
+
}
|
|
2763
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2764
|
+
declare module 'gi://xrandr' {
|
|
2765
|
+
import Xrandr13 from '@girs/xrandr-1.3';
|
|
2766
|
+
export default Xrandr13;
|
|
2767
|
+
}
|
|
2768
|
+
declare module 'gi://ArrowCUDA?version=1.0' {
|
|
2769
|
+
import ArrowCUDA10 from '@girs/arrowcuda-1.0';
|
|
2770
|
+
export default ArrowCUDA10;
|
|
2771
|
+
}
|
|
2772
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2773
|
+
declare module 'gi://ArrowCUDA' {
|
|
2774
|
+
import ArrowCUDA10 from '@girs/arrowcuda-1.0';
|
|
2775
|
+
export default ArrowCUDA10;
|
|
2776
|
+
}
|
|
2777
|
+
declare module 'gi://GstInterfaces?version=0.10' {
|
|
2778
|
+
import GstInterfaces010 from '@girs/gstinterfaces-0.10';
|
|
2779
|
+
export default GstInterfaces010;
|
|
2780
|
+
}
|
|
2781
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2782
|
+
declare module 'gi://GstInterfaces' {
|
|
2783
|
+
import GstInterfaces010 from '@girs/gstinterfaces-0.10';
|
|
2784
|
+
export default GstInterfaces010;
|
|
2785
|
+
}
|
|
2786
|
+
declare module 'gi://SocialWebClient?version=0.25' {
|
|
2787
|
+
import SocialWebClient025 from '@girs/socialwebclient-0.25';
|
|
2788
|
+
export default SocialWebClient025;
|
|
2789
|
+
}
|
|
2790
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2791
|
+
declare module 'gi://SocialWebClient' {
|
|
2792
|
+
import SocialWebClient025 from '@girs/socialwebclient-0.25';
|
|
2793
|
+
export default SocialWebClient025;
|
|
2794
|
+
}
|
|
2795
|
+
declare module 'gi://AppIndicator3?version=0.1' {
|
|
2796
|
+
import AppIndicator301 from '@girs/appindicator3-0.1';
|
|
2797
|
+
export default AppIndicator301;
|
|
2798
|
+
}
|
|
2799
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2800
|
+
declare module 'gi://AppIndicator3' {
|
|
2801
|
+
import AppIndicator301 from '@girs/appindicator3-0.1';
|
|
2802
|
+
export default AppIndicator301;
|
|
2803
|
+
}
|
|
2804
|
+
declare module 'gi://CloudProviders?version=0.3' {
|
|
2805
|
+
import CloudProviders03 from '@girs/cloudproviders-0.3';
|
|
2806
|
+
export default CloudProviders03;
|
|
2807
|
+
}
|
|
2808
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2809
|
+
declare module 'gi://CloudProviders' {
|
|
2810
|
+
import CloudProviders03 from '@girs/cloudproviders-0.3';
|
|
2811
|
+
export default CloudProviders03;
|
|
2812
|
+
}
|
|
2813
|
+
declare module 'gi://Gvc?version=1.0' {
|
|
2814
|
+
import Gvc10 from '@girs/gvc-1.0';
|
|
2815
|
+
export default Gvc10;
|
|
2816
|
+
}
|
|
2817
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2818
|
+
declare module 'gi://Gvc' {
|
|
2819
|
+
import Gvc10 from '@girs/gvc-1.0';
|
|
2820
|
+
export default Gvc10;
|
|
2821
|
+
}
|
|
2822
|
+
declare module 'gi://Shell?version=0.1' {
|
|
2823
|
+
import Shell01 from '@girs/shell-0.1';
|
|
2824
|
+
export default Shell01;
|
|
2825
|
+
}
|
|
2826
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2827
|
+
declare module 'gi://Shell' {
|
|
2828
|
+
import Shell01 from '@girs/shell-0.1';
|
|
2829
|
+
export default Shell01;
|
|
2830
|
+
}
|
|
2831
|
+
declare module 'gi://St?version=1.0' {
|
|
2832
|
+
import St10 from '@girs/st-1.0';
|
|
2833
|
+
export default St10;
|
|
2834
|
+
}
|
|
2835
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2836
|
+
declare module 'gi://St' {
|
|
2837
|
+
import St10 from '@girs/st-1.0';
|
|
2838
|
+
export default St10;
|
|
2839
|
+
}
|
|
2840
|
+
declare module 'gi://Shew?version=0' {
|
|
2841
|
+
import Shew0 from '@girs/shew-0';
|
|
2842
|
+
export default Shew0;
|
|
2843
|
+
}
|
|
2844
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2845
|
+
declare module 'gi://Shew' {
|
|
2846
|
+
import Shew0 from '@girs/shew-0';
|
|
2847
|
+
export default Shew0;
|
|
2848
|
+
}
|
|
2849
|
+
declare module 'gi://Meta?version=11' {
|
|
2850
|
+
import Meta11 from '@girs/meta-11';
|
|
2851
|
+
export default Meta11;
|
|
2852
|
+
}
|
|
2853
|
+
// Add support for ESM imports without version prefix only if there is no version conflict
|
|
2854
|
+
declare module 'gi://Meta' {
|
|
2855
|
+
import Meta11 from '@girs/meta-11';
|
|
2856
|
+
export default Meta11;
|
|
2857
|
+
}
|