@girs/javascriptcore-4.1 2.50.0-4.0.0-beta.37 → 2.50.5-4.0.0-beta.39
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/javascriptcore-4.1.d.ts +1 -30
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for JavaScriptCore-4.1, generated from library version 2.50.
|
|
8
|
+
GJS TypeScript type definitions for JavaScriptCore-4.1, generated from library version 2.50.5 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.39.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
package/javascriptcore-4.1.d.ts
CHANGED
|
@@ -1080,10 +1080,9 @@ export namespace JavaScriptCore {
|
|
|
1080
1080
|
* in JSC being called, the contents of the memory region might be modified in
|
|
1081
1081
|
* the meantime. Consider taking a copy of the data and using the copy instead
|
|
1082
1082
|
* in asynchronous code.
|
|
1083
|
-
* @param size location where to store the size of the memory region.
|
|
1084
1083
|
* @returns pointer to memory.
|
|
1085
1084
|
*/
|
|
1086
|
-
array_buffer_get_data(
|
|
1085
|
+
array_buffer_get_data(): Uint8Array;
|
|
1087
1086
|
/**
|
|
1088
1087
|
* Gets the size in bytes of the array buffer.
|
|
1089
1088
|
*
|
|
@@ -1516,10 +1515,6 @@ export namespace JavaScriptCore {
|
|
|
1516
1515
|
type ClassClass = typeof Class;
|
|
1517
1516
|
abstract class ClassPrivate {
|
|
1518
1517
|
static $gtype: GObject.GType<ClassPrivate>;
|
|
1519
|
-
|
|
1520
|
-
// Constructors
|
|
1521
|
-
|
|
1522
|
-
_init(...args: any[]): void;
|
|
1523
1518
|
}
|
|
1524
1519
|
|
|
1525
1520
|
/**
|
|
@@ -1537,55 +1532,31 @@ export namespace JavaScriptCore {
|
|
|
1537
1532
|
has_property: ClassHasPropertyFunction;
|
|
1538
1533
|
delete_property: ClassDeletePropertyFunction;
|
|
1539
1534
|
enumerate_properties: ClassEnumeratePropertiesFunction;
|
|
1540
|
-
|
|
1541
|
-
// Constructors
|
|
1542
|
-
|
|
1543
|
-
_init(...args: any[]): void;
|
|
1544
1535
|
}
|
|
1545
1536
|
|
|
1546
1537
|
type ContextClass = typeof Context;
|
|
1547
1538
|
abstract class ContextPrivate {
|
|
1548
1539
|
static $gtype: GObject.GType<ContextPrivate>;
|
|
1549
|
-
|
|
1550
|
-
// Constructors
|
|
1551
|
-
|
|
1552
|
-
_init(...args: any[]): void;
|
|
1553
1540
|
}
|
|
1554
1541
|
|
|
1555
1542
|
type ExceptionClass = typeof Exception;
|
|
1556
1543
|
abstract class ExceptionPrivate {
|
|
1557
1544
|
static $gtype: GObject.GType<ExceptionPrivate>;
|
|
1558
|
-
|
|
1559
|
-
// Constructors
|
|
1560
|
-
|
|
1561
|
-
_init(...args: any[]): void;
|
|
1562
1545
|
}
|
|
1563
1546
|
|
|
1564
1547
|
type ValueClass = typeof Value;
|
|
1565
1548
|
abstract class ValuePrivate {
|
|
1566
1549
|
static $gtype: GObject.GType<ValuePrivate>;
|
|
1567
|
-
|
|
1568
|
-
// Constructors
|
|
1569
|
-
|
|
1570
|
-
_init(...args: any[]): void;
|
|
1571
1550
|
}
|
|
1572
1551
|
|
|
1573
1552
|
type VirtualMachineClass = typeof VirtualMachine;
|
|
1574
1553
|
abstract class VirtualMachinePrivate {
|
|
1575
1554
|
static $gtype: GObject.GType<VirtualMachinePrivate>;
|
|
1576
|
-
|
|
1577
|
-
// Constructors
|
|
1578
|
-
|
|
1579
|
-
_init(...args: any[]): void;
|
|
1580
1555
|
}
|
|
1581
1556
|
|
|
1582
1557
|
type WeakValueClass = typeof WeakValue;
|
|
1583
1558
|
abstract class WeakValuePrivate {
|
|
1584
1559
|
static $gtype: GObject.GType<WeakValuePrivate>;
|
|
1585
|
-
|
|
1586
|
-
// Constructors
|
|
1587
|
-
|
|
1588
|
-
_init(...args: any[]): void;
|
|
1589
1560
|
}
|
|
1590
1561
|
|
|
1591
1562
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/javascriptcore-4.1",
|
|
3
|
-
"version": "2.50.
|
|
4
|
-
"description": "GJS TypeScript type definitions for JavaScriptCore-4.1, generated from library version 2.50.
|
|
3
|
+
"version": "2.50.5-4.0.0-beta.39",
|
|
4
|
+
"description": "GJS TypeScript type definitions for JavaScriptCore-4.1, generated from library version 2.50.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "javascriptcore-4.1.js",
|
|
7
7
|
"main": "javascriptcore-4.1.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "4.0.0-beta.
|
|
35
|
-
"@girs/gobject-2.0": "2.86.
|
|
36
|
-
"@girs/glib-2.0": "2.86.
|
|
34
|
+
"@girs/gjs": "4.0.0-beta.39",
|
|
35
|
+
"@girs/gobject-2.0": "2.86.4-4.0.0-beta.39",
|
|
36
|
+
"@girs/glib-2.0": "2.86.4-4.0.0-beta.39" },
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typescript": "*"
|
|
39
39
|
},
|