[go: up one dir, main page]

web-sys 0.3.63

Bindings for all Web APIs, a procedurally generated crate from WebIDL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
export function new_response() {
  return new Response(null, {status: 501});
}

export function get_wasm_imports() {
  return {
    imports: {
      imported_func: function () {
        return 1;
      }
    }
  };
}