mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 05:44:52 +00:00
15 lines
245 B
JavaScript
15 lines
245 B
JavaScript
|
|
native = require('../native/index.node');
|
|
|
|
require.extensions['.60'] = function (module, filename) {
|
|
var c = native.load(filename);
|
|
module.exports["show"] = function () {
|
|
c.create().show();
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = native;
|
|
|
|
|
|
|