/** * Add-on module of the library that handles resources installation in * [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers). * * This add-on module is loaded using {@link MainModule.installWorkersPoolModule} from the main module. * * The following example illustrates the usage of {@link WorkersPool} by computing an approximation of 𝜋 using a * probabilistic approach with the help of Python and its numpy package. * * * * @module WorkersPoolModule */ export * from './workers-factory'; export * from './views'; export * from './web-worker.proxy';