Skip to content

Commit

Permalink
[cubing_rust_wasm_bg.wasm.d.ts] Use declare for compat with `esbuil…
Browse files Browse the repository at this point in the history
…d` v0.19.0.
  • Loading branch information
lgarron committed Aug 9, 2023
1 parent ff5d59c commit 95cc329
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* tslint:disable */
/* eslint-disable */
export const memory: WebAssembly.Memory;
export function invert_alg(a: number, b: number, c: number): void;
export function greet(): void;
export function internal_init(): void;
export function __wbindgen_add_to_stack_pointer(a: number): number;
export function __wbindgen_malloc(a: number): number;
export function __wbindgen_realloc(a: number, b: number, c: number): number;
export function __wbindgen_free(a: number, b: number): void;
declare const memory: WebAssembly.Memory;
declare function invert_alg(a: number, b: number, c: number): void;
declare function greet(): void;
declare function internal_init(): void;
declare function __wbindgen_add_to_stack_pointer(a: number): number;
declare function __wbindgen_malloc(a: number): number;
declare function __wbindgen_realloc(a: number, b: number, c: number): number;
declare function __wbindgen_free(a: number, b: number): void;

0 comments on commit 95cc329

Please sign in to comment.