hello-wasm-template
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

WebAssembly template

  • wasm 项目示例模板
/* tslint:disable */
/* eslint-disable */
/**
 */
export function greet(): void;
/**
 * @returns {string}
 */
export function get_char(): string;
/**
 * @returns {string}
 */
export function get_str(): string;
/**
 * @returns {number}
 */
export function get_usize(): number;
/**
 * @returns {number}
 */
export function get_isize(): number;
/**
 * ### string inversion
 * ### 字符串反转
 * @param {string} str
 * @returns {string}
 */
export function parse_str(str: string): string;
/**
 * ### fibonacci series
 * ### 斐波那契数列
 * @param {number} x
 * @returns {number}
 */
export function fib(x: number): number;

Readme

Keywords

none

Package Sidebar

Install

npm i hello-wasm-template

Weekly Downloads

1

Version

0.1.2

License

MIT

Unpacked Size

47.4 kB

Total Files

12

Last publish

Collaborators

  • mxy_c