electron/spec/fixtures/module/hello-child.js

7 lines
85 B
JavaScript

class Hello {
say () {
return 'hi child window';
}
}
module.exports = Hello;