@girs/gcalc-2 2.0.0-3.0.4 → 2.0.0-3.2.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 +1 -1
- package/gcalc-2.d.cts +1 -1
- package/gcalc-2.d.ts +1 -1
- package/package.json +8 -14
- package/{tsconfig.doc.json → tsconfig.json} +2 -0
- package/typedoc.json +7 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for GCalc-2, generated from library version 2.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.0.
|
|
8
|
+
GJS TypeScript type definitions for GCalc-2, generated from library version 2.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.0.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gcalc-2.d.cts
CHANGED
|
@@ -1903,7 +1903,7 @@ export interface ExpressionHashMap {
|
|
|
1903
1903
|
|
|
1904
1904
|
// Overloads of remove
|
|
1905
1905
|
|
|
1906
|
-
remove(key: any
|
|
1906
|
+
remove(key: any): [ /* returnType */ boolean, /* value */ any ]
|
|
1907
1907
|
find_named(name: string | null): MathExpression | null
|
|
1908
1908
|
get_parent(): MathExpression
|
|
1909
1909
|
set_parent(value: MathExpression): void
|
package/gcalc-2.d.ts
CHANGED
|
@@ -1905,7 +1905,7 @@ interface ExpressionHashMap {
|
|
|
1905
1905
|
|
|
1906
1906
|
// Overloads of remove
|
|
1907
1907
|
|
|
1908
|
-
remove(key: any
|
|
1908
|
+
remove(key: any): [ /* returnType */ boolean, /* value */ any ]
|
|
1909
1909
|
find_named(name: string | null): MathExpression | null
|
|
1910
1910
|
get_parent(): MathExpression
|
|
1911
1911
|
set_parent(value: MathExpression): void
|
package/package.json
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gcalc-2",
|
|
3
|
-
"version": "2.0.0-3.0
|
|
3
|
+
"version": "2.0.0-3.2.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for GCalc-2, generated from library version 2.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gcalc-2.js",
|
|
7
7
|
"main": "gcalc-2.js",
|
|
8
|
-
"typedoc": {
|
|
9
|
-
"entryPoint": "./gcalc-2.d.ts",
|
|
10
|
-
"readmeFile": "./README.md",
|
|
11
|
-
"displayName": "GCalc-2",
|
|
12
|
-
"tsconfig": "./tsconfig.doc.json"
|
|
13
|
-
},
|
|
14
8
|
"exports": {
|
|
15
9
|
"./ambient": "./gcalc-2-ambient.d.ts",
|
|
16
10
|
"./import": "./gcalc-2-import.d.ts",
|
|
@@ -27,15 +21,15 @@
|
|
|
27
21
|
},
|
|
28
22
|
"scripts": {
|
|
29
23
|
"test": "yarn test:esm && yarn test:cjs",
|
|
30
|
-
"test:esm": "tsc --noEmit gcalc-2.d.ts",
|
|
31
|
-
"test:cjs": "tsc --noEmit gcalc-2.d.cts"
|
|
24
|
+
"test:esm": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gcalc-2.d.ts",
|
|
25
|
+
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gcalc-2.d.cts"
|
|
32
26
|
},
|
|
33
27
|
"dependencies": {
|
|
34
|
-
"@girs/gee-0.8": "^0.8.0-3.0
|
|
35
|
-
"@girs/gio-2.0": "^2.76.1-3.0
|
|
36
|
-
"@girs/gjs": "^3.0
|
|
37
|
-
"@girs/glib-2.0": "^2.76.1-3.0
|
|
38
|
-
"@girs/gobject-2.0": "^2.76.1-3.0
|
|
28
|
+
"@girs/gee-0.8": "^0.8.0-3.2.0",
|
|
29
|
+
"@girs/gio-2.0": "^2.76.1-3.2.0",
|
|
30
|
+
"@girs/gjs": "^3.2.0",
|
|
31
|
+
"@girs/glib-2.0": "^2.76.1-3.2.0",
|
|
32
|
+
"@girs/gobject-2.0": "^2.76.1-3.2.0"
|
|
39
33
|
},
|
|
40
34
|
"devDependencies": {
|
|
41
35
|
"typescript": "*"
|