mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-23 15:44:50 +01:00
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
/**
|
|
* Load the WebAssembly module in the background, if it has not already been loaded.
|
|
*
|
|
* Returns a promise which will resolve once the other methods are ready.
|
|
*
|
|
* @returns {Promise<void>}
|
|
*/
|
|
export function loadWasmAsync(): Promise<void>;
|
|
|
|
export function loadWasmSync(): void;
|