docs: enhance documentation
[poolifier.git] / src / utility-types.ts
index 3a454f3e6b8d0e1ee1c3a64897206f04c35c3ef8..e48ded5373695b4f778d43da19f00c2cf5b0ee3f 100644 (file)
@@ -13,6 +13,7 @@ export type Draft<T> = { -readonly [P in keyof T]?: T[P] }
  *
  * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
  * @typeParam MainWorker - Type of main worker.
+ * @internal
  */
 export interface MessageValue<
   Data = unknown,