CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
parallel-plugin.d.mts13 linesDownload Raw Back to dist
1import { T as Plugin, Vt as MaybePromise } from "./shared/define-config-sxBscJ3M.mjs";2 3//#region src/plugin/parallel-plugin-implementation.d.ts4type ParallelPluginImplementation = Plugin;5type Context = {6  /**7  * Thread number8  */9  threadNumber: number;10};11declare function defineParallelPluginImplementation<Options>(plugin: (Options: Options, context: Context) => MaybePromise<ParallelPluginImplementation>): (Options: Options, context: Context) => MaybePromise<ParallelPluginImplementation>;12//#endregion13export { type Context, type ParallelPluginImplementation, defineParallelPluginImplementation };