@swc/wasm-typescript 1.7.9 → 1.7.10
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/package.json +1 -1
- package/wasm.d.ts +3 -2
- package/wasm.js +25 -25
package/package.json
CHANGED
package/wasm.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
|
|
4
|
-
export function transform(src: string, opts?: Options): Promise<TransformOutput>;
|
|
5
|
-
export function transformSync(src: string, opts?: Options): TransformOutput;
|
|
4
|
+
export declare function transform(src: string, opts?: Options): Promise<TransformOutput>;
|
|
5
|
+
export declare function transformSync(src: string, opts?: Options): TransformOutput;
|
|
6
|
+
export type { Options, TransformOutput };
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
|