pyodide 0.27.0-alpha.2 → 0.27.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/ffi.d.ts +4 -1
- package/package.json +3 -3
- package/pyodide-lock.json +1 -1
- package/pyodide.asm.js +1 -1
- package/pyodide.asm.wasm +0 -0
- package/pyodide.d.ts +91 -29
- package/pyodide.js +3 -3
- package/pyodide.js.map +2 -2
- package/pyodide.mjs +3 -3
- package/pyodide.mjs.map +2 -2
- package/python_stdlib.zip +0 -0
package/ffi.d.ts
CHANGED
|
@@ -1086,8 +1086,11 @@ declare class PythonError extends Error {
|
|
|
1086
1086
|
constructor(type: string, message: string, error_address: number);
|
|
1087
1087
|
}
|
|
1088
1088
|
/**
|
|
1089
|
-
*
|
|
1089
|
+
* Foreign function interface classes. Can be used for typescript type
|
|
1090
|
+
* annotations or at runtime for `instanceof` checks.
|
|
1091
|
+
* @summaryLink :ref:`ffi <js-api-pyodide-ffi>`
|
|
1090
1092
|
* @hidetype
|
|
1093
|
+
* @omitFromAutoModule
|
|
1091
1094
|
*/
|
|
1092
1095
|
declare const ffi: {
|
|
1093
1096
|
PyProxy: typeof PyProxy;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pyodide",
|
|
3
|
-
"version": "0.27.0
|
|
3
|
+
"version": "0.27.0",
|
|
4
4
|
"description": "The Pyodide JavaScript package",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"python",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"sinon": "^18.0.0",
|
|
35
35
|
"ts-mocha": "^9.0.2",
|
|
36
36
|
"tsd": "^0.24.1",
|
|
37
|
-
"typedoc": "^0.
|
|
38
|
-
"typescript": "
|
|
37
|
+
"typedoc": "^0.27.6",
|
|
38
|
+
"typescript": "5.7",
|
|
39
39
|
"wabt": "^1.0.32"
|
|
40
40
|
},
|
|
41
41
|
"main": "pyodide.js",
|