Files
mini-loader/packages/mini-loader/src/input/input.ts
Morten Olsen 6d8e5bf955 init
2024-01-12 12:43:51 +01:00

12 lines
144 B
TypeScript

import { workerData } from 'worker_threads';
const get = <T>() => {
return workerData as T;
};
const input = {
get,
};
export { input };