@ts-for-gir/lib 3.3.0 → 4.0.0-beta.2
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 +0 -1
- package/lib/conflict-resolver.d.ts +2 -39
- package/lib/conflict-resolver.js +4 -228
- package/lib/conflict-resolver.js.map +1 -1
- package/lib/constants.d.ts +3 -7
- package/lib/constants.js +6 -16
- package/lib/constants.js.map +1 -1
- package/lib/dependency-manager.d.ts +3 -5
- package/lib/dependency-manager.js +10 -17
- package/lib/dependency-manager.js.map +1 -1
- package/lib/formatters/default.d.ts +4 -0
- package/lib/formatters/default.js +7 -0
- package/lib/formatters/default.js.map +1 -0
- package/lib/formatters/formatter.d.ts +3 -0
- package/lib/formatters/formatter.js +3 -0
- package/lib/formatters/formatter.js.map +1 -0
- package/lib/formatters/json.d.ts +4 -0
- package/lib/formatters/json.js +7 -0
- package/lib/formatters/json.js.map +1 -0
- package/lib/generators/dts/gio.d.ts +2 -0
- package/lib/generators/dts/gio.js +9 -0
- package/lib/generators/dts/gio.js.map +1 -0
- package/lib/generators/dts/glib.d.ts +2 -0
- package/lib/generators/dts/glib.js +514 -0
- package/lib/generators/dts/glib.js.map +1 -0
- package/lib/generators/dts/gobject.d.ts +2 -0
- package/lib/generators/dts/gobject.js +117 -0
- package/lib/generators/dts/gobject.js.map +1 -0
- package/lib/generators/dts-inline.d.ts +8 -0
- package/lib/generators/dts-inline.js +59 -0
- package/lib/generators/dts-inline.js.map +1 -0
- package/lib/generators/dts-modules.d.ts +8 -0
- package/lib/generators/dts-modules.js +100 -0
- package/lib/generators/dts-modules.js.map +1 -0
- package/lib/generators/dts.d.ts +45 -0
- package/lib/generators/dts.js +682 -0
- package/lib/generators/dts.js.map +1 -0
- package/lib/generators/generator.d.ts +45 -0
- package/lib/generators/generator.js +9 -0
- package/lib/generators/generator.js.map +1 -0
- package/lib/generators/index.d.ts +5 -0
- package/lib/generators/index.js +6 -0
- package/lib/generators/index.js.map +1 -0
- package/lib/generators/json.d.ts +256 -0
- package/lib/generators/json.js +869 -0
- package/lib/generators/json.js.map +1 -0
- package/lib/generics/clutter.d.ts +26 -0
- package/lib/generics/clutter.js +49 -0
- package/lib/generics/clutter.js.map +1 -0
- package/lib/generics/generify.d.ts +2 -0
- package/lib/generics/generify.js +39 -0
- package/lib/generics/generify.js.map +1 -0
- package/lib/generics/gio.d.ts +7 -0
- package/lib/generics/gio.js +51 -0
- package/lib/generics/gio.js.map +1 -0
- package/lib/generics/glib.d.ts +7 -0
- package/lib/generics/glib.js +18 -0
- package/lib/generics/glib.js.map +1 -0
- package/lib/generics/meta.d.ts +21 -0
- package/lib/generics/meta.js +26 -0
- package/lib/generics/meta.js.map +1 -0
- package/lib/generics/st.d.ts +16 -0
- package/lib/generics/st.js +92 -0
- package/lib/generics/st.js.map +1 -0
- package/lib/generics/visitor.d.ts +20 -0
- package/lib/generics/visitor.js +259 -0
- package/lib/generics/visitor.js.map +1 -0
- package/lib/gir/alias.d.ts +24 -0
- package/lib/gir/alias.js +43 -0
- package/lib/gir/alias.js.map +1 -0
- package/lib/gir/base.d.ts +62 -0
- package/lib/gir/base.js +95 -0
- package/lib/gir/base.js.map +1 -0
- package/lib/gir/class.d.ts +189 -0
- package/lib/gir/class.js +1132 -0
- package/lib/gir/class.js.map +1 -0
- package/lib/gir/const.d.ts +25 -0
- package/lib/gir/const.js +43 -0
- package/lib/gir/const.js.map +1 -0
- package/lib/gir/enum.d.ts +45 -0
- package/lib/gir/enum.js +164 -0
- package/lib/gir/enum.js.map +1 -0
- package/lib/gir/function.d.ts +199 -0
- package/lib/gir/function.js +683 -0
- package/lib/gir/function.js.map +1 -0
- package/lib/gir/generics.d.ts +5 -0
- package/lib/gir/generics.js +57 -0
- package/lib/gir/generics.js.map +1 -0
- package/lib/gir/namespace.d.ts +21 -0
- package/lib/gir/namespace.js +57 -0
- package/lib/gir/namespace.js.map +1 -0
- package/lib/gir/nodes.d.ts +11 -0
- package/lib/gir/nodes.js +12 -0
- package/lib/gir/nodes.js.map +1 -0
- package/lib/gir/property.d.ts +60 -0
- package/lib/gir/property.js +128 -0
- package/lib/gir/property.js.map +1 -0
- package/lib/gir/registry.d.ts +51 -0
- package/lib/gir/registry.js +144 -0
- package/lib/gir/registry.js.map +1 -0
- package/lib/gir/signal.d.ts +33 -0
- package/lib/gir/signal.js +165 -0
- package/lib/gir/signal.js.map +1 -0
- package/lib/gir/util.d.ts +49 -0
- package/lib/gir/util.js +556 -0
- package/lib/gir/util.js.map +1 -0
- package/lib/gir-factory.d.ts +2 -2
- package/lib/gir-factory.js +8 -44
- package/lib/gir-factory.js.map +1 -1
- package/lib/gir-module.d.ts +61 -221
- package/lib/gir-module.js +387 -2106
- package/lib/gir-module.js.map +1 -1
- package/lib/gir.d.ts +251 -0
- package/lib/gir.js +638 -0
- package/lib/gir.js.map +1 -0
- package/lib/index.d.ts +5 -4
- package/lib/index.js +7 -4
- package/lib/index.js.map +1 -1
- package/lib/injection/callbacks/index.d.ts +0 -1
- package/lib/injection/callbacks/index.js +0 -1
- package/lib/injection/callbacks/index.js.map +1 -1
- package/lib/injection/classes/index.d.ts +0 -1
- package/lib/injection/classes/index.js +0 -1
- package/lib/injection/classes/index.js.map +1 -1
- package/lib/injection/injector.d.ts +2 -3
- package/lib/injection/injector.js +6 -8
- package/lib/injection/injector.js.map +1 -1
- package/lib/injections/gee08.d.ts +7 -0
- package/lib/injections/gee08.js +68 -0
- package/lib/injections/gee08.js.map +1 -0
- package/lib/injections/gee1.d.ts +7 -0
- package/lib/injections/gee1.js +28 -0
- package/lib/injections/gee1.js.map +1 -0
- package/lib/injections/gio.d.ts +7 -0
- package/lib/injections/gio.js +431 -0
- package/lib/injections/gio.js.map +1 -0
- package/lib/injections/glib.d.ts +7 -0
- package/lib/injections/glib.js +204 -0
- package/lib/injections/glib.js.map +1 -0
- package/lib/injections/gobject.d.ts +7 -0
- package/lib/injections/gobject.js +479 -0
- package/lib/injections/gobject.js.map +1 -0
- package/lib/injections/inject.d.ts +4 -0
- package/lib/injections/inject.js +28 -0
- package/lib/injections/inject.js.map +1 -0
- package/lib/injections/tracker1.d.ts +7 -0
- package/lib/injections/tracker1.js +30 -0
- package/lib/injections/tracker1.js.map +1 -0
- package/lib/library-version.js.map +1 -1
- package/lib/logger.d.ts +1 -3
- package/lib/logger.js +3 -8
- package/lib/logger.js.map +1 -1
- package/lib/messages.d.ts +1 -4
- package/lib/messages.js +1 -3
- package/lib/messages.js.map +1 -1
- package/lib/registry.d.ts +9 -0
- package/lib/registry.js +13 -0
- package/lib/registry.js.map +1 -0
- package/lib/symtable.js +1 -1
- package/lib/symtable.js.map +1 -1
- package/lib/transformation.d.ts +4 -5
- package/lib/transformation.js +31 -127
- package/lib/transformation.js.map +1 -1
- package/lib/types/generate-config.d.ts +4 -11
- package/lib/types/gir-alias-element.d.ts +3 -12
- package/lib/types/gir-bitfield-element.d.ts +3 -14
- package/lib/types/gir-callable-param-element.d.ts +3 -31
- package/lib/types/gir-callable-params.d.ts +7 -0
- package/lib/types/gir-callable-params.js +2 -0
- package/lib/types/gir-callable-params.js.map +1 -0
- package/lib/types/gir-callable-return.d.ts +3 -20
- package/lib/types/gir-callback-element.d.ts +3 -12
- package/lib/types/gir-class-element.d.ts +3 -34
- package/lib/types/gir-constant-element.d.ts +3 -14
- package/lib/types/gir-constructor-element.d.ts +3 -5
- package/lib/types/gir-enum-element.d.ts +3 -16
- package/lib/types/gir-field-element.d.ts +3 -16
- package/lib/types/gir-function-element.d.ts +3 -5
- package/lib/types/gir-instance-parameter.d.ts +2 -17
- package/lib/types/gir-interface-element.d.ts +4 -19
- package/lib/types/gir-member-element.d.ts +4 -16
- package/lib/types/gir-method-element.d.ts +4 -10
- package/lib/types/gir-namespace.d.ts +14 -17
- package/lib/types/gir-property-element.d.ts +3 -22
- package/lib/types/gir-record-element.d.ts +3 -23
- package/lib/types/gir-repository.d.ts +3 -14
- package/lib/types/gir-signal.d.ts +3 -18
- package/lib/types/gir-union-element.d.ts +3 -16
- package/lib/types/gir-virtual-method.d.ts +3 -7
- package/lib/types/index.d.ts +3 -54
- package/lib/types/index.js +3 -54
- package/lib/types/index.js.map +1 -1
- package/lib/types/parsed-gir.d.ts +3 -2
- package/lib/types/transformations.d.ts +1 -8
- package/lib/types/user-config.d.ts +0 -11
- package/lib/types.d.ts +23 -0
- package/lib/types.js +2 -0
- package/lib/types.js.map +1 -0
- package/lib/util.d.ts +20 -0
- package/lib/util.js +67 -0
- package/lib/util.js.map +1 -0
- package/lib/utils.d.ts +2 -30
- package/lib/utils.js +0 -56
- package/lib/utils.js.map +1 -1
- package/lib/validators/class.d.ts +7 -0
- package/lib/validators/class.js +217 -0
- package/lib/validators/class.js.map +1 -0
- package/lib/validators/interface.d.ts +5 -0
- package/lib/validators/interface.js +16 -0
- package/lib/validators/interface.js.map +1 -0
- package/lib/visitor.d.ts +35 -0
- package/lib/visitor.js +29 -0
- package/lib/visitor.js.map +1 -0
- package/package.json +14 -10
- package/lib/gir-parser.d.ts +0 -2
- package/lib/gir-parser.js +0 -69
- package/lib/gir-parser.js.map +0 -1
- package/lib/injection/callbacks/node-gtk/index.d.ts +0 -2
- package/lib/injection/callbacks/node-gtk/index.js +0 -2
- package/lib/injection/callbacks/node-gtk/index.js.map +0 -1
- package/lib/injection/classes/node-gtk/gdk-4.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/gdk-4.0.js +0 -32
- package/lib/injection/classes/node-gtk/gdk-4.0.js.map +0 -1
- package/lib/injection/classes/node-gtk/gio-2.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/gio-2.0.js +0 -14
- package/lib/injection/classes/node-gtk/gio-2.0.js.map +0 -1
- package/lib/injection/classes/node-gtk/glib-2.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/glib-2.0.js +0 -19
- package/lib/injection/classes/node-gtk/glib-2.0.js.map +0 -1
- package/lib/injection/classes/node-gtk/gobject-2.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/gobject-2.0.js +0 -66
- package/lib/injection/classes/node-gtk/gobject-2.0.js.map +0 -1
- package/lib/injection/classes/node-gtk/graphene-1.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/graphene-1.0.js +0 -133
- package/lib/injection/classes/node-gtk/graphene-1.0.js.map +0 -1
- package/lib/injection/classes/node-gtk/gtk-3.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/gtk-3.0.js +0 -31
- package/lib/injection/classes/node-gtk/gtk-3.0.js.map +0 -1
- package/lib/injection/classes/node-gtk/gtk-4.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/gtk-4.0.js +0 -52
- package/lib/injection/classes/node-gtk/gtk-4.0.js.map +0 -1
- package/lib/injection/classes/node-gtk/index.d.ts +0 -2
- package/lib/injection/classes/node-gtk/index.js +0 -19
- package/lib/injection/classes/node-gtk/index.js.map +0 -1
- package/lib/injection/classes/node-gtk/pango-1.0.d.ts +0 -2
- package/lib/injection/classes/node-gtk/pango-1.0.js +0 -31
- package/lib/injection/classes/node-gtk/pango-1.0.js.map +0 -1
- package/lib/types/build-type.d.ts +0 -1
- package/lib/types/build-type.js +0 -2
- package/lib/types/build-type.js.map +0 -1
- package/lib/types/environment.d.ts +0 -1
- package/lib/types/environment.js +0 -2
- package/lib/types/environment.js.map +0 -1
- package/lib/types/gir-any-type.d.ts +0 -5
- package/lib/types/gir-any-type.js +0 -2
- package/lib/types/gir-any-type.js.map +0 -1
- package/lib/types/gir-array-type.d.ts +0 -20
- package/lib/types/gir-array-type.js +0 -3
- package/lib/types/gir-array-type.js.map +0 -1
- package/lib/types/gir-boolean.d.ts +0 -1
- package/lib/types/gir-boolean.js +0 -2
- package/lib/types/gir-boolean.js.map +0 -1
- package/lib/types/gir-boxed-element.d.ts +0 -15
- package/lib/types/gir-boxed-element.js +0 -2
- package/lib/types/gir-boxed-element.js.map +0 -1
- package/lib/types/gir-c-include.d.ts +0 -7
- package/lib/types/gir-c-include.js +0 -2
- package/lib/types/gir-c-include.js.map +0 -1
- package/lib/types/gir-callable-attrs.d.ts +0 -15
- package/lib/types/gir-callable-attrs.js +0 -3
- package/lib/types/gir-callable-attrs.js.map +0 -1
- package/lib/types/gir-callable-param.d.ts +0 -7
- package/lib/types/gir-callable-param.js +0 -2
- package/lib/types/gir-callable-param.js.map +0 -1
- package/lib/types/gir-direction.d.ts +0 -7
- package/lib/types/gir-direction.js +0 -9
- package/lib/types/gir-direction.js.map +0 -1
- package/lib/types/gir-doc-element.d.ts +0 -68
- package/lib/types/gir-doc-element.js +0 -2
- package/lib/types/gir-doc-element.js.map +0 -1
- package/lib/types/gir-implements.d.ts +0 -8
- package/lib/types/gir-implements.js +0 -2
- package/lib/types/gir-implements.js.map +0 -1
- package/lib/types/gir-include.d.ts +0 -9
- package/lib/types/gir-include.js +0 -2
- package/lib/types/gir-include.js.map +0 -1
- package/lib/types/gir-info-attrs.d.ts +0 -13
- package/lib/types/gir-info-attrs.js +0 -2
- package/lib/types/gir-info-attrs.js.map +0 -1
- package/lib/types/gir-info-elements.d.ts +0 -5
- package/lib/types/gir-info-elements.js +0 -2
- package/lib/types/gir-info-elements.js.map +0 -1
- package/lib/types/gir-package.d.ts +0 -7
- package/lib/types/gir-package.js +0 -2
- package/lib/types/gir-package.js.map +0 -1
- package/lib/types/gir-prerequisite.d.ts +0 -5
- package/lib/types/gir-prerequisite.js +0 -2
- package/lib/types/gir-prerequisite.js.map +0 -1
- package/lib/types/gir-transfer-ownership-type.d.ts +0 -5
- package/lib/types/gir-transfer-ownership-type.js +0 -7
- package/lib/types/gir-transfer-ownership-type.js.map +0 -1
- package/lib/types/gir-transfer-ownership.d.ts +0 -9
- package/lib/types/gir-transfer-ownership.js +0 -2
- package/lib/types/gir-transfer-ownership.js.map +0 -1
- package/lib/types/gir-type.d.ts +0 -14
- package/lib/types/gir-type.js +0 -2
- package/lib/types/gir-type.js.map +0 -1
- package/lib/types/gir-var-args.d.ts +0 -5
- package/lib/types/gir-var-args.js +0 -2
- package/lib/types/gir-var-args.js.map +0 -1
- package/lib/types/module-type.d.ts +0 -1
- package/lib/types/module-type.js +0 -2
- package/lib/types/module-type.js.map +0 -1
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
export const classesGraphene10Node = [
|
|
2
|
-
// See https://github.com/romgrk/node-gtk/blob/master/lib/overrides/Graphene-1.0.js
|
|
3
|
-
{
|
|
4
|
-
versions: ['1.0'],
|
|
5
|
-
qualifiedName: 'Graphene.Rect',
|
|
6
|
-
constructors: [
|
|
7
|
-
{
|
|
8
|
-
girTypeName: 'constructor',
|
|
9
|
-
isStatic: true,
|
|
10
|
-
name: 'create',
|
|
11
|
-
returnTypes: [{ type: 'Graphene.Rect' }],
|
|
12
|
-
inParams: [
|
|
13
|
-
{
|
|
14
|
-
name: 'x',
|
|
15
|
-
type: [{ type: 'number' }],
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
name: 'y',
|
|
19
|
-
type: [{ type: 'number' }],
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
name: 'width',
|
|
23
|
-
type: [{ type: 'number' }],
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
name: 'height',
|
|
27
|
-
type: [{ type: 'number' }],
|
|
28
|
-
},
|
|
29
|
-
],
|
|
30
|
-
doc: {
|
|
31
|
-
text: 'Creates a new Rect with the given values',
|
|
32
|
-
tags: [
|
|
33
|
-
{
|
|
34
|
-
paramName: '',
|
|
35
|
-
tagName: 'param',
|
|
36
|
-
text: 'x',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
paramName: '',
|
|
40
|
-
tagName: 'param',
|
|
41
|
-
text: 'y',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
paramName: '',
|
|
45
|
-
tagName: 'param',
|
|
46
|
-
text: 'width',
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
paramName: '',
|
|
50
|
-
tagName: 'param',
|
|
51
|
-
text: 'height',
|
|
52
|
-
},
|
|
53
|
-
],
|
|
54
|
-
},
|
|
55
|
-
},
|
|
56
|
-
],
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
versions: ['1.0'],
|
|
60
|
-
qualifiedName: 'Graphene.Point',
|
|
61
|
-
constructors: [
|
|
62
|
-
{
|
|
63
|
-
girTypeName: 'constructor',
|
|
64
|
-
isStatic: true,
|
|
65
|
-
name: 'create',
|
|
66
|
-
returnTypes: [{ type: 'Graphene.Point' }],
|
|
67
|
-
inParams: [
|
|
68
|
-
{
|
|
69
|
-
name: 'x',
|
|
70
|
-
type: [{ type: 'number' }],
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
name: 'y',
|
|
74
|
-
type: [{ type: 'number' }],
|
|
75
|
-
},
|
|
76
|
-
],
|
|
77
|
-
doc: {
|
|
78
|
-
text: 'Creates a new Point with the given values',
|
|
79
|
-
tags: [
|
|
80
|
-
{
|
|
81
|
-
paramName: '',
|
|
82
|
-
tagName: 'param',
|
|
83
|
-
text: 'x',
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
paramName: '',
|
|
87
|
-
tagName: 'param',
|
|
88
|
-
text: 'y',
|
|
89
|
-
},
|
|
90
|
-
],
|
|
91
|
-
},
|
|
92
|
-
},
|
|
93
|
-
],
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
versions: ['1.0'],
|
|
97
|
-
qualifiedName: 'Graphene.Size',
|
|
98
|
-
constructors: [
|
|
99
|
-
{
|
|
100
|
-
girTypeName: 'constructor',
|
|
101
|
-
isStatic: true,
|
|
102
|
-
name: 'create',
|
|
103
|
-
returnTypes: [{ type: 'Graphene.Size' }],
|
|
104
|
-
inParams: [
|
|
105
|
-
{
|
|
106
|
-
name: 'width',
|
|
107
|
-
type: [{ type: 'number' }],
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
name: 'height',
|
|
111
|
-
type: [{ type: 'number' }],
|
|
112
|
-
},
|
|
113
|
-
],
|
|
114
|
-
doc: {
|
|
115
|
-
text: 'Creates a new Size with the given values',
|
|
116
|
-
tags: [
|
|
117
|
-
{
|
|
118
|
-
paramName: '',
|
|
119
|
-
tagName: 'param',
|
|
120
|
-
text: 'width',
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
paramName: '',
|
|
124
|
-
tagName: 'param',
|
|
125
|
-
text: 'height',
|
|
126
|
-
},
|
|
127
|
-
],
|
|
128
|
-
},
|
|
129
|
-
},
|
|
130
|
-
],
|
|
131
|
-
},
|
|
132
|
-
];
|
|
133
|
-
//# sourceMappingURL=graphene-1.0.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"graphene-1.0.js","sourceRoot":"","sources":["../../../../src/injection/classes/node-gtk/graphene-1.0.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,qBAAqB,GAAqB;IACnD,mFAAmF;IACnF;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,eAAe;QAC9B,YAAY,EAAE;YACV;gBACI,WAAW,EAAE,aAAa;gBAC1B,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;gBACxC,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,GAAG;wBACT,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;oBACD;wBACI,IAAI,EAAE,GAAG;wBACT,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;oBACD;wBACI,IAAI,EAAE,OAAO;wBACb,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;oBACD;wBACI,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;iBACJ;gBACD,GAAG,EAAE;oBACD,IAAI,EAAE,0CAA0C;oBAChD,IAAI,EAAE;wBACF;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,GAAG;yBACZ;wBACD;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,GAAG;yBACZ;wBACD;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,OAAO;yBAChB;wBACD;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,QAAQ;yBACjB;qBACJ;iBACJ;aACJ;SACJ;KACJ;IACD;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,gBAAgB;QAC/B,YAAY,EAAE;YACV;gBACI,WAAW,EAAE,aAAa;gBAC1B,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;gBACzC,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,GAAG;wBACT,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;oBACD;wBACI,IAAI,EAAE,GAAG;wBACT,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;iBACJ;gBACD,GAAG,EAAE;oBACD,IAAI,EAAE,2CAA2C;oBACjD,IAAI,EAAE;wBACF;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,GAAG;yBACZ;wBACD;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,GAAG;yBACZ;qBACJ;iBACJ;aACJ;SACJ;KACJ;IACD;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,eAAe;QAC9B,YAAY,EAAE;YACV;gBACI,WAAW,EAAE,aAAa;gBAC1B,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;gBACxC,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,OAAO;wBACb,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;oBACD;wBACI,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;iBACJ;gBACD,GAAG,EAAE;oBACD,IAAI,EAAE,0CAA0C;oBAChD,IAAI,EAAE;wBACF;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,OAAO;yBAChB;wBACD;4BACI,SAAS,EAAE,EAAE;4BACb,OAAO,EAAE,OAAO;4BAChB,IAAI,EAAE,QAAQ;yBACjB;qBACJ;iBACJ;aACJ;SACJ;KACJ;CACJ,CAAA"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
export const classesGtk30Node = [
|
|
2
|
-
{
|
|
3
|
-
versions: ['3.0'],
|
|
4
|
-
qualifiedName: 'Gtk.Widget',
|
|
5
|
-
methods: [
|
|
6
|
-
{
|
|
7
|
-
girTypeName: 'method',
|
|
8
|
-
name: 'getSizeRequest',
|
|
9
|
-
returnTypes: [{ type: '{ width: number; height: number; }' }],
|
|
10
|
-
},
|
|
11
|
-
],
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
versions: ['3.0'],
|
|
15
|
-
qualifiedName: 'Gtk.Builder',
|
|
16
|
-
methods: [
|
|
17
|
-
{
|
|
18
|
-
girTypeName: 'method',
|
|
19
|
-
name: 'connectSignals',
|
|
20
|
-
returnTypes: [{ type: 'void' }],
|
|
21
|
-
inParams: [
|
|
22
|
-
{
|
|
23
|
-
name: 'handlers',
|
|
24
|
-
type: [{ type: '{ [handler: string]: (...args: any[]) => void; }' }],
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
},
|
|
28
|
-
],
|
|
29
|
-
},
|
|
30
|
-
];
|
|
31
|
-
//# sourceMappingURL=gtk-3.0.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gtk-3.0.js","sourceRoot":"","sources":["../../../../src/injection/classes/node-gtk/gtk-3.0.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,gBAAgB,GAAqB;IAC9C;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,YAAY;QAC3B,OAAO,EAAE;YACL;gBACI,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,gBAAgB;gBACtB,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,oCAAoC,EAAE,CAAC;aAChE;SACJ;KACJ;IACD;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,aAAa;QAC5B,OAAO,EAAE;YACL;gBACI,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,gBAAgB;gBACtB,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;gBAC/B,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,kDAAkD,EAAE,CAAC;qBACvE;iBACJ;aACJ;SACJ;KACJ;CACJ,CAAA"}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
export const classesGtk40Node = [
|
|
2
|
-
{
|
|
3
|
-
versions: ['4.0'],
|
|
4
|
-
qualifiedName: 'Gtk.Widget',
|
|
5
|
-
methods: [
|
|
6
|
-
{
|
|
7
|
-
girTypeName: 'method',
|
|
8
|
-
name: 'addCssClass',
|
|
9
|
-
inParams: [
|
|
10
|
-
{
|
|
11
|
-
name: 'classNames',
|
|
12
|
-
type: [{ type: 'string', isArray: true }],
|
|
13
|
-
},
|
|
14
|
-
],
|
|
15
|
-
returnTypes: [{ type: 'void' }],
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
girTypeName: 'method',
|
|
19
|
-
name: 'removeCssClass',
|
|
20
|
-
inParams: [
|
|
21
|
-
{
|
|
22
|
-
name: 'classNames',
|
|
23
|
-
type: [{ type: 'string', isArray: true }],
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
returnTypes: [{ type: 'void' }],
|
|
27
|
-
},
|
|
28
|
-
],
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
versions: ['4.0'],
|
|
32
|
-
qualifiedName: 'Gtk.ScrolledWindow',
|
|
33
|
-
methods: [
|
|
34
|
-
{
|
|
35
|
-
girTypeName: 'method',
|
|
36
|
-
name: 'scrollTo',
|
|
37
|
-
returnTypes: [{ type: 'number' }],
|
|
38
|
-
inParams: [
|
|
39
|
-
{
|
|
40
|
-
name: 'value',
|
|
41
|
-
type: [{ type: 'number' }],
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'vertical',
|
|
45
|
-
type: [{ type: 'boolean', optional: true }],
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
},
|
|
49
|
-
],
|
|
50
|
-
},
|
|
51
|
-
];
|
|
52
|
-
//# sourceMappingURL=gtk-4.0.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gtk-4.0.js","sourceRoot":"","sources":["../../../../src/injection/classes/node-gtk/gtk-4.0.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,gBAAgB,GAAqB;IAC9C;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,YAAY;QAC3B,OAAO,EAAE;YACL;gBACI,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,aAAa;gBACnB,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,YAAY;wBAClB,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;qBAC5C;iBACJ;gBACD,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;aAClC;YACD;gBACI,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,gBAAgB;gBACtB,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,YAAY;wBAClB,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;qBAC5C;iBACJ;gBACD,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;aAClC;SACJ;KACJ;IACD;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,oBAAoB;QACnC,OAAO,EAAE;YACL;gBACI,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,UAAU;gBAChB,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;gBACjC,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,OAAO;wBACb,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;oBACD;wBACI,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;qBAC9C;iBACJ;aACJ;SACJ;KACJ;CACJ,CAAA"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { classesGdk40Node } from './gdk-4.0.js';
|
|
2
|
-
import { classesGio20Node } from './gio-2.0.js';
|
|
3
|
-
import { classesGLib20Node } from './glib-2.0.js';
|
|
4
|
-
import { classesGObject20Node } from './gobject-2.0.js';
|
|
5
|
-
import { classesGraphene10Node } from './graphene-1.0.js';
|
|
6
|
-
import { classesGtk30Node } from './gtk-3.0.js';
|
|
7
|
-
import { classesGtk40Node } from './gtk-4.0.js';
|
|
8
|
-
import { classesPango10Node } from './pango-1.0.js';
|
|
9
|
-
export const classesNode = [
|
|
10
|
-
...classesGdk40Node,
|
|
11
|
-
...classesGio20Node,
|
|
12
|
-
...classesGLib20Node,
|
|
13
|
-
...classesGObject20Node,
|
|
14
|
-
...classesGraphene10Node,
|
|
15
|
-
...classesGtk30Node,
|
|
16
|
-
...classesGtk40Node,
|
|
17
|
-
...classesPango10Node,
|
|
18
|
-
];
|
|
19
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/injection/classes/node-gtk/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAC/C,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AACjD,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAA;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAC/C,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AAEnD,MAAM,CAAC,MAAM,WAAW,GAAqB;IACzC,GAAG,gBAAgB;IACnB,GAAG,gBAAgB;IACnB,GAAG,iBAAiB;IACpB,GAAG,oBAAoB;IACvB,GAAG,qBAAqB;IACxB,GAAG,gBAAgB;IACnB,GAAG,gBAAgB;IACnB,GAAG,kBAAkB;CACxB,CAAA"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
export const classesPango10Node = [
|
|
2
|
-
{
|
|
3
|
-
versions: ['1.0'],
|
|
4
|
-
qualifiedName: 'Pango.Layout',
|
|
5
|
-
methods: [
|
|
6
|
-
{
|
|
7
|
-
girTypeName: 'method',
|
|
8
|
-
name: 'setMarkup',
|
|
9
|
-
inParams: [
|
|
10
|
-
{
|
|
11
|
-
name: 'markup',
|
|
12
|
-
type: [{ type: 'string' }],
|
|
13
|
-
},
|
|
14
|
-
],
|
|
15
|
-
returnTypes: [{ type: 'void' }],
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
girTypeName: 'method',
|
|
19
|
-
name: 'setText',
|
|
20
|
-
inParams: [
|
|
21
|
-
{
|
|
22
|
-
name: 'text',
|
|
23
|
-
type: [{ type: 'string' }],
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
returnTypes: [{ type: 'void' }],
|
|
27
|
-
},
|
|
28
|
-
],
|
|
29
|
-
},
|
|
30
|
-
];
|
|
31
|
-
//# sourceMappingURL=pango-1.0.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pango-1.0.js","sourceRoot":"","sources":["../../../../src/injection/classes/node-gtk/pango-1.0.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAqB;IAChD;QACI,QAAQ,EAAE,CAAC,KAAK,CAAC;QACjB,aAAa,EAAE,cAAc;QAC7B,OAAO,EAAE;YACL;gBACI,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,WAAW;gBACjB,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;iBACJ;gBACD,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;aAClC;YACD;gBACI,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,SAAS;gBACf,QAAQ,EAAE;oBACN;wBACI,IAAI,EAAE,MAAM;wBACZ,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;qBAC7B;iBACJ;gBACD,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;aAClC;SACJ;KACJ;CACJ,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type BuildType = 'lib' | 'types';
|
package/lib/types/build-type.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"build-type.js","sourceRoot":"","sources":["../../src/types/build-type.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type Environment = 'gjs' | 'node';
|
package/lib/types/environment.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../src/types/environment.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-any-type.js","sourceRoot":"","sources":["../../src/types/gir-any-type.ts"],"names":[],"mappings":""}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { GirInfoAttrs, GirUnparsedNumber, GirBoolean, GirType } from './index.js';
|
|
2
|
-
export interface GirArrayType {
|
|
3
|
-
/** An array type of data where each element is of the same type */
|
|
4
|
-
$: GirInfoAttrs & {
|
|
5
|
-
/** name of the array type */
|
|
6
|
-
name?: string;
|
|
7
|
-
/** Binary attribute, true if the last element of the array is zero. For example, in an array of pointers, the last pointer would be NULL */
|
|
8
|
-
'zero-terminated'?: GirBoolean;
|
|
9
|
-
/** size of an array of predetermined fixed size. For example a C array declared as char arr[5]. */
|
|
10
|
-
'fixed-size'?: GirUnparsedNumber; /** integer */
|
|
11
|
-
/** Binary attribute which is GirBoolean (false) if the element is not introspectable. It doesn't exist in the bindings, due in general to missing information in the annotations in the original C code */
|
|
12
|
-
introspectable?: GirBoolean;
|
|
13
|
-
/** 0-based index of parameter element that specifies the length of the array */
|
|
14
|
-
length?: GirUnparsedNumber; /** integer */
|
|
15
|
-
/** the C representation of the array type */
|
|
16
|
-
'c:type'?: string;
|
|
17
|
-
};
|
|
18
|
-
array?: GirArrayType[];
|
|
19
|
-
type?: GirType[];
|
|
20
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-array-type.js","sourceRoot":"","sources":["../../src/types/gir-array-type.ts"],"names":[],"mappings":"AAAA,oFAAoF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type GirBoolean = '0' | '1';
|
package/lib/types/gir-boolean.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-boolean.js","sourceRoot":"","sources":["../../src/types/gir-boolean.ts"],"names":[],"mappings":""}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { GirInfoAttrs, GirFunctionElement } from './index.js';
|
|
2
|
-
export interface GirBoxedElement {
|
|
3
|
-
/** Boxed type (wrapper to opaque C structures registered by the type system) */
|
|
4
|
-
$: GirInfoAttrs & {
|
|
5
|
-
/** GObject compatible type name of the boxed type */
|
|
6
|
-
'glib:name': string;
|
|
7
|
-
/** prefix to filter out from C functions. For example, gtk_window_new will lose gtk_ */
|
|
8
|
-
'c:symbol-prefix'?: string;
|
|
9
|
-
/** GObject compatible type name of the boxed type */
|
|
10
|
-
'glib:type-name'?: string;
|
|
11
|
-
/** Function to get the GObject compatible type of the boxed type */
|
|
12
|
-
'glib:get-type'?: string;
|
|
13
|
-
};
|
|
14
|
-
function?: GirFunctionElement[];
|
|
15
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-boxed-element.js","sourceRoot":"","sources":["../../src/types/gir-boxed-element.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-c-include.js","sourceRoot":"","sources":["../../src/types/gir-c-include.ts"],"names":[],"mappings":""}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { GirBoolean } from './gir-boolean';
|
|
2
|
-
/** Attributes of a Callable (functions, callbacks, closures, etc...) */
|
|
3
|
-
export interface GirCallableAttrs {
|
|
4
|
-
/** name of the Callable */
|
|
5
|
-
name: string;
|
|
6
|
-
'c:identifier'?: string;
|
|
7
|
-
/** Callable it is shadowed by. For example, in C++, only one version of an overloaded callable will appear */
|
|
8
|
-
'shadowed-by'?: string;
|
|
9
|
-
/** Callable it shadows. For example, in C++, only one version of an overloaded callable will appear */
|
|
10
|
-
shadows?: string;
|
|
11
|
-
/** Binary attribute, true if the callable can throw an error */
|
|
12
|
-
throws?: GirBoolean;
|
|
13
|
-
/** if for backward compatibility reason the callable has a name in the source code but should be known by another one, this attribute contains the new name */
|
|
14
|
-
'moved-to'?: string[];
|
|
15
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-callable-attrs.js","sourceRoot":"","sources":["../../src/types/gir-callable-attrs.ts"],"names":[],"mappings":"AAAA,oFAAoF"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { GirCallableParamElement, GirInstanceParameter } from './index.js';
|
|
2
|
-
export interface GirCallableParams {
|
|
3
|
-
/** parameters element of a callable, that is in general parameters of a function or similar */
|
|
4
|
-
parameter: GirCallableParamElement[];
|
|
5
|
-
/** instance-parameter is a parameter of a C function which is an instance of an existing object. So the callable is surely a method of a class, and this parameter points to the instance of the object. In C++, this would be equivalent to the pointer this which is not passed to the method, in Python it's equivalent to self. */
|
|
6
|
-
'instance-parameter'?: GirInstanceParameter[];
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-callable-param.js","sourceRoot":"","sources":["../../src/types/gir-callable-param.ts"],"names":[],"mappings":""}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export var GirDirection;
|
|
2
|
-
(function (GirDirection) {
|
|
3
|
-
GirDirection["In"] = "in";
|
|
4
|
-
GirDirection["Inout"] = "inout";
|
|
5
|
-
GirDirection["Out"] = "out";
|
|
6
|
-
/** @deprecated */
|
|
7
|
-
GirDirection["InOut"] = "in-out";
|
|
8
|
-
})(GirDirection || (GirDirection = {}));
|
|
9
|
-
//# sourceMappingURL=gir-direction.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-direction.js","sourceRoot":"","sources":["../../src/types/gir-direction.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,YAMX;AAND,WAAY,YAAY;IACpB,yBAAS,CAAA;IACT,+BAAe,CAAA;IACf,2BAAW,CAAA;IACX,kBAAkB;IAClB,gCAAgB,CAAA;AACpB,CAAC,EANW,YAAY,KAAZ,YAAY,QAMvB"}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
export interface GirDocElement {
|
|
2
|
-
/** Version of the documentation */
|
|
3
|
-
'doc-version'?: [
|
|
4
|
-
{
|
|
5
|
-
$: {
|
|
6
|
-
/** Preserve the original formatting of the documentation from the source code */
|
|
7
|
-
'xml:space'?: 'preserve';
|
|
8
|
-
/** Preserve the original formatting of the documentation from the source code. Recommended to use this instead of xml:space */
|
|
9
|
-
'xml:whitespace'?: 'preserve';
|
|
10
|
-
};
|
|
11
|
-
/** the text of the version of the documentation */
|
|
12
|
-
_: string;
|
|
13
|
-
}
|
|
14
|
-
];
|
|
15
|
-
/** give the stability of the documentation */
|
|
16
|
-
'doc-stability'?: [
|
|
17
|
-
{
|
|
18
|
-
$: {
|
|
19
|
-
/** Preserve the original formatting of the documentation from the source code */
|
|
20
|
-
'xml:space'?: 'preserve';
|
|
21
|
-
/** Preserve the original formatting of the documentation from the source code. Recommended to use this instead of xml:space */
|
|
22
|
-
'xml:whitespace'?: 'preserve';
|
|
23
|
-
};
|
|
24
|
-
_: string;
|
|
25
|
-
}
|
|
26
|
-
];
|
|
27
|
-
/** documentation of an element */
|
|
28
|
-
doc: [
|
|
29
|
-
{
|
|
30
|
-
$: {
|
|
31
|
-
/** Preserve the original formatting of the documentation from the source code */
|
|
32
|
-
'xml:space'?: 'preserve';
|
|
33
|
-
/** Keep the whitespace as they were in the source code */
|
|
34
|
-
'xml:whitespace'?: 'preserve';
|
|
35
|
-
/** The file containing this documentation */
|
|
36
|
-
filename: string;
|
|
37
|
-
/** The first line of the documentation in the source code */
|
|
38
|
-
line: string;
|
|
39
|
-
/** The first column of the documentation in the source code */
|
|
40
|
-
column: string;
|
|
41
|
-
};
|
|
42
|
-
_: string;
|
|
43
|
-
}
|
|
44
|
-
];
|
|
45
|
-
/** Deprecated documentation of an element. Kept for historical reasons in general */
|
|
46
|
-
'doc-deprecated': [
|
|
47
|
-
{
|
|
48
|
-
$: {
|
|
49
|
-
/** Preserve the original formatting of the documentation from the source code */
|
|
50
|
-
'xml:space'?: 'preserve';
|
|
51
|
-
/** Keep the whitespace as they were in the source code */
|
|
52
|
-
'xml:whitespace'?: 'preserve';
|
|
53
|
-
};
|
|
54
|
-
_: string;
|
|
55
|
-
}
|
|
56
|
-
];
|
|
57
|
-
/** Position of the documentation in the original source code */
|
|
58
|
-
'source-position': [
|
|
59
|
-
{
|
|
60
|
-
/** File name of the source of the documentation */
|
|
61
|
-
filename: string;
|
|
62
|
-
/** The first line of the documentation in the source code */
|
|
63
|
-
line: string;
|
|
64
|
-
/** The first column of the documentation in the source code */
|
|
65
|
-
column: string[];
|
|
66
|
-
}
|
|
67
|
-
];
|
|
68
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-doc-element.js","sourceRoot":"","sources":["../../src/types/gir-doc-element.ts"],"names":[],"mappings":""}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { GirInfoAttrs } from './index.js';
|
|
2
|
-
export interface GirImplements {
|
|
3
|
-
/** Give the name of the interface it implements. This element is generally used within a class element */
|
|
4
|
-
$: GirInfoAttrs & {
|
|
5
|
-
/** name of the interface implemented by a class */
|
|
6
|
-
name: string;
|
|
7
|
-
};
|
|
8
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-implements.js","sourceRoot":"","sources":["../../src/types/gir-implements.ts"],"names":[],"mappings":""}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export interface GirInclude {
|
|
2
|
-
/** Dependant namespace to include with the current namespace. For example, Gtk will need the namespace GLib */
|
|
3
|
-
$: {
|
|
4
|
-
/** name of the dependant namespace to include */
|
|
5
|
-
name: string;
|
|
6
|
-
/** version of the dependant namespace to use */
|
|
7
|
-
version?: string;
|
|
8
|
-
};
|
|
9
|
-
}
|
package/lib/types/gir-include.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-include.js","sourceRoot":"","sources":["../../src/types/gir-include.ts"],"names":[],"mappings":""}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { GirBoolean } from './gir-boolean';
|
|
2
|
-
export interface GirInfoAttrs {
|
|
3
|
-
/** Binary attribute which is GirBoolean(false) if the element is not introspectable. It doesn't exist in the bindings, due in general to missing information in the annotations in the original C code */
|
|
4
|
-
introspectable?: GirBoolean;
|
|
5
|
-
/** Binary attribute which isBinaryOption (true) if the element has been deprecated */
|
|
6
|
-
deprecated?: string;
|
|
7
|
-
/** Version number from which this element is deprecated */
|
|
8
|
-
'deprecated-version'?: string;
|
|
9
|
-
/** version number of an element */
|
|
10
|
-
version?: string;
|
|
11
|
-
/** give the statibility status of the element. Can take the values "Stable", "Unstable" or "Private" */
|
|
12
|
-
stability?: string[];
|
|
13
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gir-info-attrs.js","sourceRoot":"","sources":["../../src/types/gir-info-attrs.ts"],"names":[],"mappings":""}
|