UNPKG

sc4

Version:

A command line utility for automating SimCity 4 modding tasks & modifying savegames

5 lines (4 loc) 281 B
import type { StructuredCloneable } from 'type-fest'; type MaybePromise<T> = Promise<T> | T; export default function workerThread(fn: (...args: any[]) => MaybePromise<StructuredCloneable>): ((task: StructuredCloneable) => MaybePromise<StructuredCloneable>) | undefined; export {};