9 lines
281 B
JavaScript
9 lines
281 B
JavaScript
// This is the main entry point of the package
|
|
// Directly exports your plugin from sigpro.js
|
|
|
|
// If your sigpro.js already exports the plugin as default, you can do:
|
|
export { default } from './sigpro.js';
|
|
|
|
// Or if you prefer CommonJS:
|
|
// module.exports = require('./sigpro.js');
|