Skip to content

Commit 961bd1a

Browse files
committedFeb 22, 2025
feat: add wasm to namespace
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent fc79e93 commit 961bd1a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎docs/types/index.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ import string = require( '@stdlib/string' );
5555
import symbol = require( '@stdlib/symbol' );
5656
import time = require( '@stdlib/time' );
5757
import utils = require( '@stdlib/utils' );
58+
import wasm = require( '@stdlib/wasm' );
5859

5960
/**
6061
* Interface describing the `stdlib` namespace.
@@ -238,6 +239,11 @@ interface Namespace {
238239
* Standard utilities.
239240
*/
240241
utils: typeof utils;
242+
243+
/**
244+
* WebAssembly utilities.
245+
*/
246+
wasm: typeof wasm;
241247
}
242248

243249
/**

0 commit comments

Comments
 (0)
Failed to load comments.