@girs/meta-3 3.30.2-4.0.0-beta.38 → 3.30.2-4.0.0-beta.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/meta-3.d.ts +33 -115
- package/package.json +23 -23
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Meta-3, generated from library version 3.30.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.
|
|
8
|
+
GJS TypeScript type definitions for Meta-3, generated from library version 3.30.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.40.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
package/meta-3.d.ts
CHANGED
|
@@ -37,21 +37,15 @@ export namespace Meta {
|
|
|
37
37
|
* Meta-3
|
|
38
38
|
*/
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
* breaking all existing themes.
|
|
44
|
-
*/
|
|
40
|
+
export namespace ButtonFunction {
|
|
41
|
+
export const $gtype: GObject.GType<ButtonFunction>;
|
|
42
|
+
}
|
|
45
43
|
|
|
46
44
|
/**
|
|
47
45
|
* Function a window button can have. Note, you can't add stuff here
|
|
48
46
|
* without extending the theme format to draw a new function and
|
|
49
47
|
* breaking all existing themes.
|
|
50
48
|
*/
|
|
51
|
-
export namespace ButtonFunction {
|
|
52
|
-
export const $gtype: GObject.GType<ButtonFunction>;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
49
|
enum ButtonFunction {
|
|
56
50
|
/**
|
|
57
51
|
* Menu
|
|
@@ -84,19 +78,15 @@ export namespace Meta {
|
|
|
84
78
|
WAIT,
|
|
85
79
|
FORCE_CLOSE,
|
|
86
80
|
}
|
|
87
|
-
/**
|
|
88
|
-
* Indicates the appropriate effect to show the user for
|
|
89
|
-
* meta_compositor_show_window() and meta_compositor_hide_window()
|
|
90
|
-
*/
|
|
91
81
|
|
|
92
|
-
/**
|
|
93
|
-
* Indicates the appropriate effect to show the user for
|
|
94
|
-
* meta_compositor_show_window() and meta_compositor_hide_window()
|
|
95
|
-
*/
|
|
96
82
|
export namespace CompEffect {
|
|
97
83
|
export const $gtype: GObject.GType<CompEffect>;
|
|
98
84
|
}
|
|
99
85
|
|
|
86
|
+
/**
|
|
87
|
+
* Indicates the appropriate effect to show the user for
|
|
88
|
+
* meta_compositor_show_window() and meta_compositor_hide_window()
|
|
89
|
+
*/
|
|
100
90
|
enum CompEffect {
|
|
101
91
|
/**
|
|
102
92
|
* The window is newly created
|
|
@@ -1080,19 +1070,15 @@ export namespace Meta {
|
|
|
1080
1070
|
FULLSCREEN,
|
|
1081
1071
|
UNFULLSCREEN,
|
|
1082
1072
|
}
|
|
1083
|
-
/**
|
|
1084
|
-
* Layers a window can be in.
|
|
1085
|
-
* These MUST be in the order of stacking.
|
|
1086
|
-
*/
|
|
1087
1073
|
|
|
1088
|
-
/**
|
|
1089
|
-
* Layers a window can be in.
|
|
1090
|
-
* These MUST be in the order of stacking.
|
|
1091
|
-
*/
|
|
1092
1074
|
export namespace StackLayer {
|
|
1093
1075
|
export const $gtype: GObject.GType<StackLayer>;
|
|
1094
1076
|
}
|
|
1095
1077
|
|
|
1078
|
+
/**
|
|
1079
|
+
* Layers a window can be in.
|
|
1080
|
+
* These MUST be in the order of stacking.
|
|
1081
|
+
*/
|
|
1096
1082
|
enum StackLayer {
|
|
1097
1083
|
/**
|
|
1098
1084
|
* Desktop layer
|
|
@@ -1176,17 +1162,14 @@ export namespace Meta {
|
|
|
1176
1162
|
*/
|
|
1177
1163
|
X11,
|
|
1178
1164
|
}
|
|
1179
|
-
/**
|
|
1180
|
-
* Menu the compositor should display for a given window
|
|
1181
|
-
*/
|
|
1182
1165
|
|
|
1183
|
-
/**
|
|
1184
|
-
* Menu the compositor should display for a given window
|
|
1185
|
-
*/
|
|
1186
1166
|
export namespace WindowMenuType {
|
|
1187
1167
|
export const $gtype: GObject.GType<WindowMenuType>;
|
|
1188
1168
|
}
|
|
1189
1169
|
|
|
1170
|
+
/**
|
|
1171
|
+
* Menu the compositor should display for a given window
|
|
1172
|
+
*/
|
|
1190
1173
|
enum WindowMenuType {
|
|
1191
1174
|
/**
|
|
1192
1175
|
* the window manager menu
|
|
@@ -1268,6 +1251,7 @@ export namespace Meta {
|
|
|
1268
1251
|
*/
|
|
1269
1252
|
OVERRIDE_OTHER,
|
|
1270
1253
|
}
|
|
1254
|
+
|
|
1271
1255
|
const CURRENT_TIME: number;
|
|
1272
1256
|
const DEFAULT_ICON_NAME: string;
|
|
1273
1257
|
const ICON_HEIGHT: number;
|
|
@@ -1480,7 +1464,6 @@ export namespace Meta {
|
|
|
1480
1464
|
interface WindowForeachFunc {
|
|
1481
1465
|
(window: Window): boolean;
|
|
1482
1466
|
}
|
|
1483
|
-
|
|
1484
1467
|
export namespace BarrierDirection {
|
|
1485
1468
|
export const $gtype: GObject.GType<BarrierDirection>;
|
|
1486
1469
|
}
|
|
@@ -1768,17 +1751,14 @@ export namespace Meta {
|
|
|
1768
1751
|
*/
|
|
1769
1752
|
BOTH,
|
|
1770
1753
|
}
|
|
1771
|
-
/**
|
|
1772
|
-
* Options that can be provided when calling meta_plugin_begin_modal().
|
|
1773
|
-
*/
|
|
1774
1754
|
|
|
1775
|
-
/**
|
|
1776
|
-
* Options that can be provided when calling meta_plugin_begin_modal().
|
|
1777
|
-
*/
|
|
1778
1755
|
export namespace ModalOptions {
|
|
1779
1756
|
export const $gtype: GObject.GType<ModalOptions>;
|
|
1780
1757
|
}
|
|
1781
1758
|
|
|
1759
|
+
/**
|
|
1760
|
+
* Options that can be provided when calling meta_plugin_begin_modal().
|
|
1761
|
+
*/
|
|
1782
1762
|
enum ModalOptions {
|
|
1783
1763
|
/**
|
|
1784
1764
|
* if set the pointer is already
|
|
@@ -1838,6 +1818,7 @@ export namespace Meta {
|
|
|
1838
1818
|
*/
|
|
1839
1819
|
MOD5_MASK,
|
|
1840
1820
|
}
|
|
1821
|
+
|
|
1841
1822
|
namespace Backend {
|
|
1842
1823
|
// Signal signatures
|
|
1843
1824
|
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
@@ -2614,7 +2595,8 @@ export namespace Meta {
|
|
|
2614
2595
|
// Constructor properties interface
|
|
2615
2596
|
|
|
2616
2597
|
interface ConstructorProps
|
|
2617
|
-
extends
|
|
2598
|
+
extends
|
|
2599
|
+
Clutter.Actor.ConstructorProps,
|
|
2618
2600
|
Atk.ImplementorIface.ConstructorProps,
|
|
2619
2601
|
Clutter.Animatable.ConstructorProps,
|
|
2620
2602
|
Clutter.Container.ConstructorProps,
|
|
@@ -3689,7 +3671,8 @@ export namespace Meta {
|
|
|
3689
3671
|
// Constructor properties interface
|
|
3690
3672
|
|
|
3691
3673
|
interface ConstructorProps
|
|
3692
|
-
extends
|
|
3674
|
+
extends
|
|
3675
|
+
Clutter.Actor.ConstructorProps,
|
|
3693
3676
|
Atk.ImplementorIface.ConstructorProps,
|
|
3694
3677
|
Clutter.Animatable.ConstructorProps,
|
|
3695
3678
|
Clutter.Container.ConstructorProps,
|
|
@@ -4921,8 +4904,7 @@ export namespace Meta {
|
|
|
4921
4904
|
// Constructor properties interface
|
|
4922
4905
|
|
|
4923
4906
|
interface ConstructorProps
|
|
4924
|
-
extends Gio.DBusInterfaceSkeleton.ConstructorProps,
|
|
4925
|
-
Gio.DBusInterface.ConstructorProps {}
|
|
4907
|
+
extends Gio.DBusInterfaceSkeleton.ConstructorProps, Gio.DBusInterface.ConstructorProps {}
|
|
4926
4908
|
}
|
|
4927
4909
|
|
|
4928
4910
|
/**
|
|
@@ -5867,8 +5849,7 @@ export namespace Meta {
|
|
|
5867
5849
|
// Constructor properties interface
|
|
5868
5850
|
|
|
5869
5851
|
interface ConstructorProps
|
|
5870
|
-
extends DBusDisplayConfigSkeleton.ConstructorProps,
|
|
5871
|
-
Gio.DBusInterface.ConstructorProps {
|
|
5852
|
+
extends DBusDisplayConfigSkeleton.ConstructorProps, Gio.DBusInterface.ConstructorProps {
|
|
5872
5853
|
backend: Backend;
|
|
5873
5854
|
}
|
|
5874
5855
|
}
|
|
@@ -6833,7 +6814,8 @@ export namespace Meta {
|
|
|
6833
6814
|
// Constructor properties interface
|
|
6834
6815
|
|
|
6835
6816
|
interface ConstructorProps
|
|
6836
|
-
extends
|
|
6817
|
+
extends
|
|
6818
|
+
Clutter.Actor.ConstructorProps,
|
|
6837
6819
|
Atk.ImplementorIface.ConstructorProps,
|
|
6838
6820
|
Clutter.Animatable.ConstructorProps,
|
|
6839
6821
|
Clutter.Container.ConstructorProps,
|
|
@@ -7900,7 +7882,8 @@ export namespace Meta {
|
|
|
7900
7882
|
// Constructor properties interface
|
|
7901
7883
|
|
|
7902
7884
|
interface ConstructorProps
|
|
7903
|
-
extends
|
|
7885
|
+
extends
|
|
7886
|
+
Clutter.Stage.ConstructorProps,
|
|
7904
7887
|
Atk.ImplementorIface.ConstructorProps,
|
|
7905
7888
|
Clutter.Animatable.ConstructorProps,
|
|
7906
7889
|
Clutter.Container.ConstructorProps,
|
|
@@ -8967,7 +8950,8 @@ export namespace Meta {
|
|
|
8967
8950
|
// Constructor properties interface
|
|
8968
8951
|
|
|
8969
8952
|
interface ConstructorProps
|
|
8970
|
-
extends
|
|
8953
|
+
extends
|
|
8954
|
+
Clutter.Actor.ConstructorProps,
|
|
8971
8955
|
Atk.ImplementorIface.ConstructorProps,
|
|
8972
8956
|
Clutter.Animatable.ConstructorProps,
|
|
8973
8957
|
Clutter.Container.ConstructorProps,
|
|
@@ -10026,7 +10010,8 @@ export namespace Meta {
|
|
|
10026
10010
|
// Constructor properties interface
|
|
10027
10011
|
|
|
10028
10012
|
interface ConstructorProps
|
|
10029
|
-
extends
|
|
10013
|
+
extends
|
|
10014
|
+
Clutter.Actor.ConstructorProps,
|
|
10030
10015
|
Atk.ImplementorIface.ConstructorProps,
|
|
10031
10016
|
Clutter.Animatable.ConstructorProps,
|
|
10032
10017
|
Clutter.Container.ConstructorProps,
|
|
@@ -11235,30 +11220,18 @@ export namespace Meta {
|
|
|
11235
11220
|
type BackgroundActorClass = typeof BackgroundActor;
|
|
11236
11221
|
abstract class BackgroundActorPrivate {
|
|
11237
11222
|
static $gtype: GObject.GType<BackgroundActorPrivate>;
|
|
11238
|
-
|
|
11239
|
-
// Constructors
|
|
11240
|
-
|
|
11241
|
-
_init(...args: any[]): void;
|
|
11242
11223
|
}
|
|
11243
11224
|
|
|
11244
11225
|
type BackgroundClass = typeof Background;
|
|
11245
11226
|
type BackgroundGroupClass = typeof BackgroundGroup;
|
|
11246
11227
|
abstract class BackgroundGroupPrivate {
|
|
11247
11228
|
static $gtype: GObject.GType<BackgroundGroupPrivate>;
|
|
11248
|
-
|
|
11249
|
-
// Constructors
|
|
11250
|
-
|
|
11251
|
-
_init(...args: any[]): void;
|
|
11252
11229
|
}
|
|
11253
11230
|
|
|
11254
11231
|
type BackgroundImageCacheClass = typeof BackgroundImageCache;
|
|
11255
11232
|
type BackgroundImageClass = typeof BackgroundImage;
|
|
11256
11233
|
abstract class BackgroundPrivate {
|
|
11257
11234
|
static $gtype: GObject.GType<BackgroundPrivate>;
|
|
11258
|
-
|
|
11259
|
-
// Constructors
|
|
11260
|
-
|
|
11261
|
-
_init(...args: any[]): void;
|
|
11262
11235
|
}
|
|
11263
11236
|
|
|
11264
11237
|
type BarrierClass = typeof Barrier;
|
|
@@ -11292,15 +11265,10 @@ export namespace Meta {
|
|
|
11292
11265
|
grabbed: boolean;
|
|
11293
11266
|
}>,
|
|
11294
11267
|
);
|
|
11295
|
-
_init(...args: any[]): void;
|
|
11296
11268
|
}
|
|
11297
11269
|
|
|
11298
11270
|
abstract class BarrierPrivate {
|
|
11299
11271
|
static $gtype: GObject.GType<BarrierPrivate>;
|
|
11300
|
-
|
|
11301
|
-
// Constructors
|
|
11302
|
-
|
|
11303
|
-
_init(...args: any[]): void;
|
|
11304
11272
|
}
|
|
11305
11273
|
|
|
11306
11274
|
class ButtonLayout {
|
|
@@ -11312,10 +11280,6 @@ export namespace Meta {
|
|
|
11312
11280
|
left_buttons_has_spacer: boolean[];
|
|
11313
11281
|
right_buttons: ButtonFunction[];
|
|
11314
11282
|
right_buttons_has_spacer: boolean[];
|
|
11315
|
-
|
|
11316
|
-
// Constructors
|
|
11317
|
-
|
|
11318
|
-
_init(...args: any[]): void;
|
|
11319
11283
|
}
|
|
11320
11284
|
|
|
11321
11285
|
type CloseDialogInterface = typeof CloseDialog;
|
|
@@ -11330,18 +11294,10 @@ export namespace Meta {
|
|
|
11330
11294
|
rect: Rectangle;
|
|
11331
11295
|
side_type: Side;
|
|
11332
11296
|
edge_type: EdgeType;
|
|
11333
|
-
|
|
11334
|
-
// Constructors
|
|
11335
|
-
|
|
11336
|
-
_init(...args: any[]): void;
|
|
11337
11297
|
}
|
|
11338
11298
|
|
|
11339
11299
|
abstract class Frame {
|
|
11340
11300
|
static $gtype: GObject.GType<Frame>;
|
|
11341
|
-
|
|
11342
|
-
// Constructors
|
|
11343
|
-
|
|
11344
|
-
_init(...args: any[]): void;
|
|
11345
11301
|
}
|
|
11346
11302
|
|
|
11347
11303
|
class FrameBorders {
|
|
@@ -11362,7 +11318,6 @@ export namespace Meta {
|
|
|
11362
11318
|
total: Gtk.Border;
|
|
11363
11319
|
}>,
|
|
11364
11320
|
);
|
|
11365
|
-
_init(...args: any[]): void;
|
|
11366
11321
|
|
|
11367
11322
|
// Methods
|
|
11368
11323
|
|
|
@@ -11374,10 +11329,6 @@ export namespace Meta {
|
|
|
11374
11329
|
class KeyBinding {
|
|
11375
11330
|
static $gtype: GObject.GType<KeyBinding>;
|
|
11376
11331
|
|
|
11377
|
-
// Constructors
|
|
11378
|
-
|
|
11379
|
-
_init(...args: any[]): void;
|
|
11380
|
-
|
|
11381
11332
|
// Methods
|
|
11382
11333
|
|
|
11383
11334
|
get_mask(): number;
|
|
@@ -11411,15 +11362,10 @@ export namespace Meta {
|
|
|
11411
11362
|
description: string;
|
|
11412
11363
|
}>,
|
|
11413
11364
|
);
|
|
11414
|
-
_init(...args: any[]): void;
|
|
11415
11365
|
}
|
|
11416
11366
|
|
|
11417
11367
|
abstract class PluginPrivate {
|
|
11418
11368
|
static $gtype: GObject.GType<PluginPrivate>;
|
|
11419
|
-
|
|
11420
|
-
// Constructors
|
|
11421
|
-
|
|
11422
|
-
_init(...args: any[]): void;
|
|
11423
11369
|
}
|
|
11424
11370
|
|
|
11425
11371
|
class PluginVersion {
|
|
@@ -11442,7 +11388,6 @@ export namespace Meta {
|
|
|
11442
11388
|
version_api: number;
|
|
11443
11389
|
}>,
|
|
11444
11390
|
);
|
|
11445
|
-
_init(...args: any[]): void;
|
|
11446
11391
|
}
|
|
11447
11392
|
|
|
11448
11393
|
class Rectangle {
|
|
@@ -11465,7 +11410,6 @@ export namespace Meta {
|
|
|
11465
11410
|
height: number;
|
|
11466
11411
|
}>,
|
|
11467
11412
|
);
|
|
11468
|
-
_init(...args: any[]): void;
|
|
11469
11413
|
|
|
11470
11414
|
// Methods
|
|
11471
11415
|
|
|
@@ -11487,10 +11431,6 @@ export namespace Meta {
|
|
|
11487
11431
|
abstract class Settings {
|
|
11488
11432
|
static $gtype: GObject.GType<Settings>;
|
|
11489
11433
|
|
|
11490
|
-
// Constructors
|
|
11491
|
-
|
|
11492
|
-
_init(...args: any[]): void;
|
|
11493
|
-
|
|
11494
11434
|
// Methods
|
|
11495
11435
|
|
|
11496
11436
|
get_font_dpi(): number;
|
|
@@ -11505,10 +11445,6 @@ export namespace Meta {
|
|
|
11505
11445
|
class Shadow {
|
|
11506
11446
|
static $gtype: GObject.GType<Shadow>;
|
|
11507
11447
|
|
|
11508
|
-
// Constructors
|
|
11509
|
-
|
|
11510
|
-
_init(...args: any[]): void;
|
|
11511
|
-
|
|
11512
11448
|
// Methods
|
|
11513
11449
|
|
|
11514
11450
|
/**
|
|
@@ -11580,16 +11516,11 @@ export namespace Meta {
|
|
|
11580
11516
|
opacity: number;
|
|
11581
11517
|
}>,
|
|
11582
11518
|
);
|
|
11583
|
-
_init(...args: any[]): void;
|
|
11584
11519
|
}
|
|
11585
11520
|
|
|
11586
11521
|
type ShapedTextureClass = typeof ShapedTexture;
|
|
11587
11522
|
abstract class ShapedTexturePrivate {
|
|
11588
11523
|
static $gtype: GObject.GType<ShapedTexturePrivate>;
|
|
11589
|
-
|
|
11590
|
-
// Constructors
|
|
11591
|
-
|
|
11592
|
-
_init(...args: any[]): void;
|
|
11593
11524
|
}
|
|
11594
11525
|
|
|
11595
11526
|
type StageClass = typeof Stage;
|
|
@@ -11600,19 +11531,11 @@ export namespace Meta {
|
|
|
11600
11531
|
|
|
11601
11532
|
rect: Rectangle;
|
|
11602
11533
|
side: Side;
|
|
11603
|
-
|
|
11604
|
-
// Constructors
|
|
11605
|
-
|
|
11606
|
-
_init(...args: any[]): void;
|
|
11607
11534
|
}
|
|
11608
11535
|
|
|
11609
11536
|
abstract class Theme {
|
|
11610
11537
|
static $gtype: GObject.GType<Theme>;
|
|
11611
11538
|
|
|
11612
|
-
// Constructors
|
|
11613
|
-
|
|
11614
|
-
_init(...args: any[]): void;
|
|
11615
|
-
|
|
11616
11539
|
// Methods
|
|
11617
11540
|
|
|
11618
11541
|
free(): void;
|
|
@@ -11621,10 +11544,6 @@ export namespace Meta {
|
|
|
11621
11544
|
type WindowActorClass = typeof WindowActor;
|
|
11622
11545
|
abstract class WindowActorPrivate {
|
|
11623
11546
|
static $gtype: GObject.GType<WindowActorPrivate>;
|
|
11624
|
-
|
|
11625
|
-
// Constructors
|
|
11626
|
-
|
|
11627
|
-
_init(...args: any[]): void;
|
|
11628
11547
|
}
|
|
11629
11548
|
|
|
11630
11549
|
type WindowClass = typeof Window;
|
|
@@ -11644,7 +11563,6 @@ export namespace Meta {
|
|
|
11644
11563
|
// Constructors
|
|
11645
11564
|
|
|
11646
11565
|
constructor(region: cairo.Region);
|
|
11647
|
-
_init(...args: any[]): void;
|
|
11648
11566
|
|
|
11649
11567
|
static ['new'](region: cairo.Region): WindowShape;
|
|
11650
11568
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/meta-3",
|
|
3
|
-
"version": "3.30.2-4.0.0-beta.
|
|
3
|
+
"version": "3.30.2-4.0.0-beta.40",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Meta-3, generated from library version 3.30.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "meta-3.js",
|
|
@@ -31,28 +31,28 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "4.0.0-beta.
|
|
35
|
-
"@girs/xlib-2.0": "2.0.0-4.0.0-beta.
|
|
36
|
-
"@girs/xfixes-4.0": "4.0.0-4.0.0-beta.
|
|
37
|
-
"@girs/gtk-3.0": "3.24.
|
|
38
|
-
"@girs/gdk-3.0": "3.24.
|
|
39
|
-
"@girs/cairo-1.0": "1.0.0-4.0.0-beta.
|
|
40
|
-
"@girs/gobject-2.0": "2.86.
|
|
41
|
-
"@girs/glib-2.0": "2.86.
|
|
42
|
-
"@girs/pango-1.0": "1.57.0-4.0.0-beta.
|
|
43
|
-
"@girs/harfbuzz-0.0": "11.5.
|
|
44
|
-
"@girs/freetype2-2.0": "2.0.0-4.0.0-beta.
|
|
45
|
-
"@girs/gio-2.0": "2.86.
|
|
46
|
-
"@girs/gmodule-2.0": "2.0.0-4.0.0-beta.
|
|
47
|
-
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.
|
|
48
|
-
"@girs/atk-1.0": "2.58.
|
|
49
|
-
"@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.
|
|
50
|
-
"@girs/cogl-3": "3.0.0-4.0.0-beta.
|
|
51
|
-
"@girs/gl-1.0": "1.0.0-4.0.0-beta.
|
|
52
|
-
"@girs/clutter-3": "1.26.1-4.0.0-beta.
|
|
53
|
-
"@girs/json-1.0": "1.10.8-4.0.0-beta.
|
|
54
|
-
"@girs/coglpango-3": "3.0.0-4.0.0-beta.
|
|
55
|
-
"@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.
|
|
34
|
+
"@girs/gjs": "4.0.0-beta.40",
|
|
35
|
+
"@girs/xlib-2.0": "2.0.0-4.0.0-beta.40",
|
|
36
|
+
"@girs/xfixes-4.0": "4.0.0-4.0.0-beta.40",
|
|
37
|
+
"@girs/gtk-3.0": "3.24.51-4.0.0-beta.40",
|
|
38
|
+
"@girs/gdk-3.0": "3.24.51-4.0.0-beta.40",
|
|
39
|
+
"@girs/cairo-1.0": "1.0.0-4.0.0-beta.40",
|
|
40
|
+
"@girs/gobject-2.0": "2.86.4-4.0.0-beta.40",
|
|
41
|
+
"@girs/glib-2.0": "2.86.4-4.0.0-beta.40",
|
|
42
|
+
"@girs/pango-1.0": "1.57.0-4.0.0-beta.40",
|
|
43
|
+
"@girs/harfbuzz-0.0": "11.5.1-4.0.0-beta.40",
|
|
44
|
+
"@girs/freetype2-2.0": "2.0.0-4.0.0-beta.40",
|
|
45
|
+
"@girs/gio-2.0": "2.86.4-4.0.0-beta.40",
|
|
46
|
+
"@girs/gmodule-2.0": "2.0.0-4.0.0-beta.40",
|
|
47
|
+
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.40",
|
|
48
|
+
"@girs/atk-1.0": "2.58.3-4.0.0-beta.40",
|
|
49
|
+
"@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.40",
|
|
50
|
+
"@girs/cogl-3": "3.0.0-4.0.0-beta.40",
|
|
51
|
+
"@girs/gl-1.0": "1.0.0-4.0.0-beta.40",
|
|
52
|
+
"@girs/clutter-3": "1.26.1-4.0.0-beta.40",
|
|
53
|
+
"@girs/json-1.0": "1.10.8-4.0.0-beta.40",
|
|
54
|
+
"@girs/coglpango-3": "3.0.0-4.0.0-beta.40",
|
|
55
|
+
"@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.40" },
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"typescript": "*"
|
|
58
58
|
},
|