mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-14 20:11:37 +03:00
f75349262a
cc #906
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
exports.import_me = function() {};
|
|
|
|
global.webkitMySpecialApi = class {
|
|
foo() { return 123; }
|
|
};
|
|
global.MySpecialApi2 = class {
|
|
foo() { return 124; }
|
|
};
|
|
global.bMySpecialApi3 = class {
|
|
foo() { return 125; }
|
|
};
|