mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-20 12:10:52 +00:00
14 lines
285 B
Rust
14 lines
285 B
Rust
#![cfg(target_arch = "wasm32")]
|
|
#![feature(use_extern_macros, wasm_import_module)]
|
|
#![allow(non_snake_case)]
|
|
|
|
extern crate js_sys;
|
|
extern crate wasm_bindgen;
|
|
extern crate wasm_bindgen_test;
|
|
|
|
pub mod Array;
|
|
pub mod ArrayBuffer;
|
|
pub mod ArrayIterator;
|
|
pub mod Boolean;
|
|
pub mod DataView;
|