fulcrum-extensions
v0.2.0
Published
```js const { load, finish } = require('fulcrum-extensions');
Downloads
9
Readme
Fulcrum App Extensions
const { load, finish } = require('fulcrum-extensions');
// wait for the extension to load
load(({ data }) => {
console.log('extension loaded with data', data);
// pass back the result to the data events
finish({ result: 1 };)
});