@girs/cloudproviders-0.3 5.3.0 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for CloudProviders-0.3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.
|
|
7
|
+
GJS TypeScript type definitions for CloudProviders-0.3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.4.0.
|
|
8
8
|
|
|
9
9
|
This package contains type declarations only. It ships no runtime code, so it adds
|
|
10
10
|
nothing to your program and works with any bundler or none at all.
|
|
@@ -448,6 +448,19 @@ export const FLAG_VALUES_UNREADABLE: Readonly<Record<string, string>>;
|
|
|
448
448
|
*/
|
|
449
449
|
export const PROP_ENUMS: Readonly<Record<string, string>>;
|
|
450
450
|
|
|
451
|
+
/**
|
|
452
|
+
* `<declaration GType>.<property>` -> the GType of that property's own type.
|
|
453
|
+
*
|
|
454
|
+
* `PROP_ENUMS` one case wider, and separate on purpose: that table promises the GType it names
|
|
455
|
+
* has NUMBERS, and this one promises only that the GType is the property's. A host inferring a
|
|
456
|
+
* type from a property — the middle of an uncast lookup chain, an uncast closure's return type —
|
|
457
|
+
* reads this one; a host resolving a nick to a number reads that one.
|
|
458
|
+
*
|
|
459
|
+
* Absent means no GType can be stated, not that the property is scalar: `gchararray` is carried
|
|
460
|
+
* like any other, so absence is readable as "unknown".
|
|
461
|
+
*/
|
|
462
|
+
export const PROP_TYPES: Readonly<Record<string, string>>;
|
|
463
|
+
|
|
451
464
|
/**
|
|
452
465
|
* The kinds of value a GTK accessible property, relation or state takes.
|
|
453
466
|
*
|
|
@@ -144,6 +144,40 @@ export const PROP_ENUMS = {
|
|
|
144
144
|
'GDBusInterfaceSkeleton.g-flags': 'GDBusInterfaceSkeletonFlags',
|
|
145
145
|
};
|
|
146
146
|
|
|
147
|
+
// `<declaration GType>.<property>` -> the GType of that property's own type.
|
|
148
|
+
//
|
|
149
|
+
// `PROP_ENUMS` one case wider, and a SEPARATE table on purpose. That one is a join with a
|
|
150
|
+
// contract — the GType it names has numbers, in this vocabulary or the owner's — and folding a
|
|
151
|
+
// plain type table in would mix "resolvable to numbers" with "not" and hand the distinction to
|
|
152
|
+
// the consumer. `ARIA_VALUE_ENUMS` beside `ARIA_VALUE_TYPES` is the same split.
|
|
153
|
+
//
|
|
154
|
+
// A row is ABSENT where no GType can be stated: a fundamental spelling outside the generator's
|
|
155
|
+
// closed map, a registered type with no `glib:type-name`, or a property with no `<type>`
|
|
156
|
+
// child. Absence therefore reads as "unknown" and never as "scalar".
|
|
157
|
+
export const PROP_TYPES = {
|
|
158
|
+
'CloudProvidersAccountExporter.action-group': 'GActionGroup',
|
|
159
|
+
'CloudProvidersAccountExporter.bus-name': 'gchararray',
|
|
160
|
+
'CloudProvidersAccountExporter.icon': 'GIcon',
|
|
161
|
+
'CloudProvidersAccountExporter.menu-model': 'GMenuModel',
|
|
162
|
+
'CloudProvidersAccountExporter.name': 'gchararray',
|
|
163
|
+
'CloudProvidersAccountExporter.path': 'gchararray',
|
|
164
|
+
'CloudProvidersAccountExporter.provider': 'CloudProvidersProviderExporter',
|
|
165
|
+
'CloudProvidersAccountExporter.status-details': 'gchararray',
|
|
166
|
+
'CloudProvidersDbusAccount.icon': 'gchararray',
|
|
167
|
+
'CloudProvidersDbusAccount.name': 'gchararray',
|
|
168
|
+
'CloudProvidersDbusAccount.path': 'gchararray',
|
|
169
|
+
'CloudProvidersDbusAccount.status': 'gint',
|
|
170
|
+
'CloudProvidersDbusAccount.status-details': 'gchararray',
|
|
171
|
+
'CloudProvidersDbusObject.account': 'CloudProvidersDbusAccount',
|
|
172
|
+
'CloudProvidersDbusObject.provider': 'CloudProvidersDbusProvider',
|
|
173
|
+
'CloudProvidersDbusProvider.name': 'gchararray',
|
|
174
|
+
'CloudProvidersProviderExporter.bus': 'GDBusConnection',
|
|
175
|
+
'CloudProvidersProviderExporter.bus-name': 'gchararray',
|
|
176
|
+
'CloudProvidersProviderExporter.bus-path': 'gchararray',
|
|
177
|
+
'CloudProvidersProviderExporter.name': 'gchararray',
|
|
178
|
+
'GDBusInterfaceSkeleton.g-flags': 'GDBusInterfaceSkeletonFlags',
|
|
179
|
+
};
|
|
180
|
+
|
|
147
181
|
// `<enum GType>.<nick>` -> the kind of value that ARIA slot takes.
|
|
148
182
|
//
|
|
149
183
|
// The one table here that is not about a ParamSpec. A GtkBuilder or Blueprint
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/cloudproviders-0.3",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for CloudProviders-0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "cloudproviders-0.3.js",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"test": "tsc --project tsconfig.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gjs": "^5.
|
|
40
|
-
"@girs/gio-2.0": "^5.
|
|
41
|
-
"@girs/gobject-2.0": "^5.
|
|
42
|
-
"@girs/glib-2.0": "^5.
|
|
43
|
-
"@girs/gmodule-2.0": "^5.
|
|
39
|
+
"@girs/gjs": "^5.4.0",
|
|
40
|
+
"@girs/gio-2.0": "^5.4.0",
|
|
41
|
+
"@girs/gobject-2.0": "^5.4.0",
|
|
42
|
+
"@girs/glib-2.0": "^5.4.0",
|
|
43
|
+
"@girs/gmodule-2.0": "^5.4.0" },
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "*"
|
|
46
46
|
},
|