Initial comment conversion to TSDoc
[poolifier.git] / src / utility-types.ts
index 7bcd076c291736cad1729d66a671a51b2115c1b7..2d142f860e4b19893a131e7cbc872abda5f8270a 100644 (file)
@@ -46,8 +46,8 @@ export interface MessageValue<
 /**
  * An object holding the worker that will be used to resolve/rejects the promise later on.
  *
- * @template Worker Type of worker.
- * @template Response Type of response of execution. This can only be serializable data.
+ * @typeParam Worker - Type of worker.
+ * @typeParam Response - Type of response of execution. This can only be serializable data.
  */
 export interface PromiseWorkerResponseWrapper<
   Worker extends IPoolWorker,