@swc/wasm
Advanced tools
Comparing version 1.7.8-nightly-20240809.1 to 1.7.8-nightly-20240809.2
@@ -7,3 +7,3 @@ { | ||
"description": "wasm module for swc", | ||
"version": "1.7.8-nightly-20240809.1", | ||
"version": "1.7.8-nightly-20240809.2", | ||
"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; | ||
Sorry, the diff of this file is not supported yet
22938820