mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-22 17:21:35 +00:00
.cargo
crates
backend
cli
cli-support
futures
js-sys
macro
macro-support
shared
test
test-macro
typescript
wasm-interpreter
web-sys
webidl
webidl-tests
Cargo.toml
array.js
array.rs
array.webidl
array_buffer.js
array_buffer.rs
array_buffer.webidl
build.rs
consts.js
consts.rs
consts.webidl
dictionary.js
dictionary.rs
dictionary.webidl
enums.js
enums.rs
enums.webidl
global.js
global.rs
global.webidl
lib.rs
main.rs
namespace.js
namespace.rs
namespace.webidl
simple.js
simple.rs
simple.webidl
throws.js
throws.rs
throws.webidl
examples
guide
releases
src
tests
.appveyor.yml
.eslintignore
.eslintrc
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
build.rs
package.json
publish.rs
17 lines
479 B
Plaintext
17 lines
479 B
Plaintext
![]() |
[Constructor()]
|
||
|
interface TestArrays {
|
||
|
DOMString strings(DOMString arg1);
|
||
|
ByteString byteStrings(ByteString arg1);
|
||
|
USVString usvStrings(USVString arg1);
|
||
|
|
||
|
Float32Array f32(Float32Array a);
|
||
|
Float64Array f64(Float64Array a);
|
||
|
Int8Array i8(Int8Array a);
|
||
|
Int16Array i16(Int16Array a);
|
||
|
Int32Array i32(Int32Array a);
|
||
|
Uint8Array u8(Uint8Array a);
|
||
|
Uint8ClampedArray u8Clamped(Uint8ClampedArray a);
|
||
|
Uint16Array u16(Uint16Array a);
|
||
|
Uint32Array u32(Uint32Array a);
|
||
|
};
|