-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cubing_rust_wasm_bg.wasm.d.ts] Use
declare
for compat with `esbuil…
…d` v0.19.0.
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
16 changes: 8 additions & 8 deletions
16
src/sites/experiments.cubing.net/cubing.js/rust/wasm/cubing_rust_wasm_bg.wasm.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |