@d34/gjs-libs 0.1.0-test.1 → 0.1.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/package.json +3 -4
- package/ambient.d.ts +0 -29
- package/src/ambient.d.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d34/gjs-libs",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Type-safe GJS (GNOME JavaScript) library bindings for TypeScript projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Deadarius <deadarius@pm.me>",
|
|
@@ -2678,8 +2678,7 @@
|
|
|
2678
2678
|
"./zpj-0.0": {
|
|
2679
2679
|
"import": "./src/zpj-0.0/mod.js",
|
|
2680
2680
|
"types": "./src/zpj-0.0/mod.d.ts"
|
|
2681
|
-
}
|
|
2682
|
-
"./ambient": "./ambient.d.ts"
|
|
2681
|
+
}
|
|
2683
2682
|
},
|
|
2684
2683
|
"dependencies": {
|
|
2685
2684
|
"@girs/abi-3.0": "3.0.0-4.0.0-beta.38",
|
|
@@ -3355,4 +3354,4 @@
|
|
|
3355
3354
|
"bugs": {
|
|
3356
3355
|
"url": "https://codeberg.org/deadarius/gjs-libs/issues"
|
|
3357
3356
|
}
|
|
3358
|
-
}
|
|
3357
|
+
}
|
package/ambient.d.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
// Ambient module declarations for GJS built-in modules
|
|
2
|
-
// These are required because @girs packages use bare module specifiers like 'cairo'
|
|
3
|
-
|
|
4
|
-
declare module "cairo" {
|
|
5
|
-
import Cairo from "@girs/gjs/cairo";
|
|
6
|
-
export default Cairo;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module "system" {
|
|
10
|
-
export * from "@girs/gjs/system";
|
|
11
|
-
import System from "@girs/gjs/system";
|
|
12
|
-
export default System;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
declare module "gettext" {
|
|
16
|
-
export * from "@girs/gjs/gettext";
|
|
17
|
-
import Gettext from "@girs/gjs/gettext";
|
|
18
|
-
export default Gettext;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
declare module "console" {
|
|
22
|
-
import Console, {
|
|
23
|
-
setConsoleLogDomain,
|
|
24
|
-
getConsoleLogDomain,
|
|
25
|
-
DEFAULT_LOG_DOMAIN,
|
|
26
|
-
} from "@girs/gjs/console";
|
|
27
|
-
export { setConsoleLogDomain, getConsoleLogDomain, DEFAULT_LOG_DOMAIN };
|
|
28
|
-
export default Console;
|
|
29
|
-
}
|
package/src/ambient.d.js
DELETED
|
File without changes
|