@loaders.gl/worker-utils
Version:
Utilities for running tasks on worker threads
18 lines • 497 B
JavaScript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
export default class ChildProcessProxy {
constructor() {
throw new Error('ChildProcessProxy is not available in browser environments');
}
async start(props) {
return await Promise.resolve({});
}
async stop() {
return await Promise.resolve();
}
async exit() {
return await Promise.resolve();
}
}
//# sourceMappingURL=child-process-proxy.browser.js.map