1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-03-31 17:31:06 +00:00

12 lines
216 B
JavaScript
Raw Normal View History

exports.import_me = function() {};
global.webkitMySpecialApi = class {
foo() { return 123; }
};
global.MySpecialApi2 = class {
foo() { return 124; }
};
global.bMySpecialApi3 = class {
foo() { return 125; }
};