Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
/**
* Options for a poolifier pool.
*
- * @typeParam Worker - The worker type.
+ * @typeParam Worker - Type of worker.
*/
export interface PoolOptions<Worker extends IWorker> {
/**
/**
* Detects whether the given value is a kill behavior or not.
*
- * @typeParam KB - Which specific KillBehavior to test against.
+ * @typeParam KB - Which specific KillBehavior type to test against.
* @param killBehavior - Which kind of kill behavior to detect.
* @param value - Any value.
* @returns `true` if `value` was strictly equals to `killBehavior`, otherwise `false`.