@swc/wasm
Advanced tools
Comparing version 1.10.0 to 1.10.1-nightly-20241209.1
@@ -7,3 +7,3 @@ { | ||
"description": "wasm module for swc", | ||
"version": "1.10.0", | ||
"version": "1.10.1-nightly-20241209.1", | ||
"license": "Apache-2.0", | ||
@@ -10,0 +10,0 @@ "repository": { |
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export function minify(src: string, opts?: JsMinifyOptions): Promise<Output>; | ||
export function minifySync(code: string, opts?: JsMinifyOptions): Output; | ||
export function parse(src: string, options: ParseOptions & { | ||
isModule: false; | ||
}): Promise<Script>; | ||
export function parse(src: string, options?: ParseOptions): Promise<Module>; | ||
export function parseSync(src: string, options: ParseOptions & { | ||
isModule: false; | ||
}): Script; | ||
export function parseSync(src: string, options?: ParseOptions): Module; | ||
export function print(m: Program, options?: Options): Promise<Output>; | ||
export function printSync(m: Program, options?: Options): Output | ||
/** | ||
* Note: this interface currently does not do _actual_ async work, only provides | ||
* a corresponding async interfaces to the `@swc/core`'s interface. | ||
*/ | ||
export function transform( | ||
code: string | Program, | ||
options?: Options, | ||
experimental_plugin_bytes_resolver?: any | ||
): Promise<Output>; | ||
/** | ||
* @param {string} code | ||
* @param {Options} opts | ||
* @param {Record<string, ArrayBuffer>} experimental_plugin_bytes_resolver An object contains bytes array for the plugin | ||
* specified in config. Key of record represents the name of the plugin specified in config. Note this is an experimental | ||
* interface, likely will change. | ||
* @returns {Output} | ||
*/ | ||
export function transformSync(code: string | Program, opts?: Options, experimental_plugin_bytes_resolver?: any): Output; | ||
export interface Plugin { | ||
@@ -2797,37 +2833,1 @@ (module: Program): Program; | ||
export function minify(src: string, opts?: JsMinifyOptions): Promise<Output>; | ||
export function minifySync(code: string, opts?: JsMinifyOptions): Output; | ||
export function parse(src: string, options: ParseOptions & { | ||
isModule: false; | ||
}): Promise<Script>; | ||
export function parse(src: string, options?: ParseOptions): Promise<Module>; | ||
export function parseSync(src: string, options: ParseOptions & { | ||
isModule: false; | ||
}): Script; | ||
export function parseSync(src: string, options?: ParseOptions): Module; | ||
export function print(m: Program, options?: Options): Promise<Output>; | ||
export function printSync(m: Program, options?: Options): Output | ||
/** | ||
* Note: this interface currently does not do _actual_ async work, only provides | ||
* a corresponding async interfaces to the `@swc/core`'s interface. | ||
*/ | ||
export function transform( | ||
code: string | Program, | ||
options?: Options, | ||
experimental_plugin_bytes_resolver?: any | ||
): Promise<Output>; | ||
/** | ||
* @param {string} code | ||
* @param {Options} opts | ||
* @param {Record<string, ArrayBuffer>} experimental_plugin_bytes_resolver An object contains bytes array for the plugin | ||
* specified in config. Key of record represents the name of the plugin specified in config. Note this is an experimental | ||
* interface, likely will change. | ||
* @returns {Output} | ||
*/ | ||
export function transformSync(code: string | Program, opts?: Options, experimental_plugin_bytes_resolver?: any): Output; | ||
26
wasm.js
@@ -534,12 +534,2 @@ | ||
module.exports.__wbg_call_3bfa248576352471 = function() { return handleError(function (arg0, arg1, arg2) { | ||
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2)); | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
module.exports.__wbindgen_is_null = function(arg0) { | ||
const ret = getObject(arg0) === null; | ||
return ret; | ||
}; | ||
module.exports.__wbg_new_1073970097e5a420 = function(arg0, arg1) { | ||
@@ -564,6 +554,12 @@ try { | ||
module.exports.__wbg_set_f975102236d3c502 = function(arg0, arg1, arg2) { | ||
getObject(arg0)[takeObject(arg1)] = takeObject(arg2); | ||
module.exports.__wbindgen_is_null = function(arg0) { | ||
const ret = getObject(arg0) === null; | ||
return ret; | ||
}; | ||
module.exports.__wbg_call_3bfa248576352471 = function() { return handleError(function (arg0, arg1, arg2) { | ||
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2)); | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
module.exports.__wbindgen_error_new = function(arg0, arg1) { | ||
@@ -574,2 +570,6 @@ const ret = new Error(getStringFromWasm0(arg0, arg1)); | ||
module.exports.__wbg_set_f975102236d3c502 = function(arg0, arg1, arg2) { | ||
getObject(arg0)[takeObject(arg1)] = takeObject(arg2); | ||
}; | ||
module.exports.__wbg_new_abda76e883ba8a5f = function() { | ||
@@ -793,3 +793,3 @@ const ret = new Error(); | ||
module.exports.__wbindgen_closure_wrapper14476 = function(arg0, arg1, arg2) { | ||
module.exports.__wbindgen_closure_wrapper14473 = function(arg0, arg1, arg2) { | ||
const ret = makeMutClosure(arg0, arg1, 987, __wbg_adapter_50); | ||
@@ -796,0 +796,0 @@ return addHeapObject(ret); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21322449
2