@noir-lang/noir_wasm 1.0.0-beta.7-8a25291.nightly → 1.0.0-beta.8-1c7c6f2.nightly
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/build/cjs/package.json +1 -1
- package/build/esm/package.json +1 -1
- package/dist/node/index_bg.wasm +0 -0
- package/dist/node/main.js +3 -3
- package/dist/node/main.js.map +1 -1
- package/dist/types/build/cjs/index.d.ts +3 -3
- package/dist/types/dist/web/main.d.mts +6 -0
- package/dist/web/main.mjs +4 -4
- package/dist/web/main.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4,9 +4,9 @@ export function init_log_level(level: string): void;
|
|
|
4
4
|
export function build_info(): any;
|
|
5
5
|
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
6
6
|
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
7
|
-
export function
|
|
8
|
-
export function
|
|
9
|
-
export function
|
|
7
|
+
export function __wbg_constructor_50f48eb550d96c85(): Object;
|
|
8
|
+
export function __wbg_constructor_cead3fee82c9e2da(): Object;
|
|
9
|
+
export function __wbg_constructor_e98499dc5396ae23(arg0: any): Error;
|
|
10
10
|
export function __wbg_debug_3cb59063b29f58c1(arg0: any): void;
|
|
11
11
|
export function __wbg_debug_e17b51583ca6a632(arg0: any, arg1: any, arg2: any, arg3: any): void;
|
|
12
12
|
export function __wbg_error_524f506f44df1645(arg0: any): void;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const __webpack_exports__compile: any;
|
|
2
|
+
declare const __webpack_exports__compile_contract: any;
|
|
3
|
+
declare const __webpack_exports__compile_program: any;
|
|
4
|
+
declare const __webpack_exports__createFileManager: any;
|
|
5
|
+
declare const __webpack_exports__inflateDebugSymbols: any;
|
|
6
|
+
export { __webpack_exports__compile as compile, __webpack_exports__compile_contract as compile_contract, __webpack_exports__compile_program as compile_program, __webpack_exports__createFileManager as createFileManager, __webpack_exports__inflateDebugSymbols as inflateDebugSymbols };
|