@girs/glib-2.0 2.80.3-4.0.0-beta.6 → 2.80.3-4.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 +1 -1
- package/glib-2.0-ambient.d.ts +2 -5
- package/glib-2.0-import.d.ts +0 -3
- package/glib-2.0.d.ts +716 -240
- package/glib-2.0.js +3 -4
- package/index.d.ts +15 -0
- package/index.js +5 -0
- package/package.json +9 -4
- package/tsconfig.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for GLib-2.0, generated from library version 2.80.3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.
|
|
8
|
+
GJS TypeScript type definitions for GLib-2.0, generated from library version 2.80.3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.12.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/glib-2.0-ambient.d.ts
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
|
|
2
1
|
declare module 'gi://GLib?version=2.0' {
|
|
3
|
-
import
|
|
4
|
-
export default
|
|
2
|
+
import GLib20 from '@girs/glib-2.0';
|
|
3
|
+
export default GLib20;
|
|
5
4
|
}
|
|
6
5
|
|
|
7
6
|
declare module 'gi://GLib' {
|
|
8
7
|
import GLib20 from 'gi://GLib?version=2.0';
|
|
9
8
|
export default GLib20;
|
|
10
9
|
}
|
|
11
|
-
|
|
12
|
-
|