summaryrefslogtreecommitdiff
path: root/core/examples/wasm.ts
diff options
context:
space:
mode:
Diffstat (limited to 'core/examples/wasm.ts')
-rw-r--r--core/examples/wasm.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/examples/wasm.ts b/core/examples/wasm.ts
new file mode 100644
index 000000000..cdb9cf78c
--- /dev/null
+++ b/core/examples/wasm.ts
@@ -0,0 +1,7 @@
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+
+export declare function op_wasm(): void;
+
+export function call(): void {
+ op_wasm();
+}