@noir-lang/noir_wasm 1.0.0-beta.6-e796dfd.nightly → 1.0.0-beta.6-4a4ab26.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.
@@ -1,9 +1,9 @@
1
1
  export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
2
2
  export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
3
- export function init_log_level(level: string): void;
4
- export function build_info(): any;
5
3
  export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
6
4
  export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
5
+ export function init_log_level(level: string): void;
6
+ export function build_info(): any;
7
7
  export function __wbg_constructor_3902903c1f5d4112(arg0: any): Error;
8
8
  export function __wbg_constructor_a76a8a7d51ed51ad(): Object;
9
9
  export function __wbg_constructor_fdbebea93e1b63a2(): Object;
@@ -12,14 +12,6 @@ export function compile_program(entry_point: string, dependency_graph: Dependenc
12
12
  * @returns {ContractCompileResult}
13
13
  */
14
14
  export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
15
- /**
16
- * @param {string} level
17
- */
18
- export function init_log_level(level: string): void;
19
- /**
20
- * @returns {any}
21
- */
22
- export function build_info(): any;
23
15
  /**
24
16
  * This is a method that exposes the same API as `compile`
25
17
  * But uses the Context based APi internally
@@ -38,6 +30,14 @@ export function compile_program_(entry_point: string, dependency_graph: Dependen
38
30
  * @returns {ContractCompileResult}
39
31
  */
40
32
  export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
33
+ /**
34
+ * @param {string} level
35
+ */
36
+ export function init_log_level(level: string): void;
37
+ /**
38
+ * @returns {any}
39
+ */
40
+ export function build_info(): any;
41
41
  /**
42
42
  * This is a wrapper class that is wasm-bindgen compatible
43
43
  * We do not use js_name and rename it like CrateId because