Silence typedoc warnings
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 15 Oct 2022 05:35:08 +0000 (07:35 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 15 Oct 2022 05:35:08 +0000 (07:35 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/pools/cluster/dynamic.ts
src/pools/cluster/fixed.ts
src/pools/thread/dynamic.ts
src/pools/thread/fixed.ts

index ebff6bfe2fa2a1abbf104db0e0dee0ce2ca312c9..f18f375c34ebdf5ffa9d6d3a04b2116c34e6dcd8 100644 (file)
@@ -23,7 +23,7 @@ export class DynamicClusterPool<
    * @param min Minimum number of workers which are always active.
    * @param max Maximum number of workers that can be created by this pool.
    * @param filePath Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
-   * @param [opts={}] Options for this dynamic cluster pool.
+   * @param opts Options for this dynamic cluster pool.
    */
   public constructor (
     min: number,
index 09c5e369a5459d0858559a29eef8e9fc3a563c66..7ad425a399d1f08c3c97afbaab9b12272571a580 100644 (file)
@@ -39,7 +39,7 @@ export class FixedClusterPool<
    *
    * @param numberOfWorkers Number of workers for this pool.
    * @param filePath Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
-   * @param [opts={}] Options for this fixed cluster pool.
+   * @param opts Options for this fixed cluster pool.
    */
   public constructor (
     numberOfWorkers: number,
index 929287c87508de7434fb72b3208e1deaba5ff846..7069f7f374907976702e944328f4e97663fd99c2 100644 (file)
@@ -24,7 +24,7 @@ export class DynamicThreadPool<
    * @param min Minimum number of threads which are always active.
    * @param max Maximum number of threads that can be created by this pool.
    * @param filePath Path to an implementation of a `ThreadWorker` file, which can be relative or absolute.
-   * @param [opts={}] Options for this dynamic thread pool.
+   * @param opts Options for this dynamic thread pool.
    */
   public constructor (
     min: number,
index 3212678f8635bc3dc3a67ed6500e5ab38ee38b66..5b06ca4971d3ed8b7f01dd917ba5befed36a410d 100644 (file)
@@ -30,7 +30,7 @@ export class FixedThreadPool<
    *
    * @param numberOfThreads Number of threads for this pool.
    * @param filePath Path to an implementation of a `ThreadWorker` file, which can be relative or absolute.
-   * @param [opts={}] Options for this fixed thread pool.
+   * @param opts Options for this fixed thread pool.
    */
   public constructor (
     numberOfThreads: number,