UNPKG

@onurege3467/zerohelper

Version:

ZeroHelper is a versatile high-performance utility library and database framework for Node.js, fully written in TypeScript.

6 lines (5 loc) 212 B
/** * Runs a function in a separate background thread. * Ideal for heavy math, data processing, or large ZPack manipulations. */ export declare function runAsyncTask<T>(taskFn: string, data: any): Promise<T>;