mirror of
https://github.com/alex8088/electron-vite.git
synced 2025-04-06 04:05:44 +08:00
6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
// node worker
|
|
declare module '*?nodeWorker' {
|
|
import { Worker, WorkerOptions } from 'node:worker_threads'
|
|
export default function (options: WorkerOptions): Worker
|
|
}
|