X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=ab2cf2e49258acf35c267f03d5c88bab91f1428e;hb=9a38f99e676160c0bc7d28fe88f27b01fa31b5a1;hp=7efb3808fa8e02ae6c294665461453c48e1a8451;hpb=e4c07d066abc51e978a18f44a973a548f24fb7ad;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 7efb3808..ab2cf2e4 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -275,6 +275,8 @@ export interface IPool< * @param name - The name of the task function. * @param fn - The task function. * @returns `true` if the task function was added, `false` otherwise. + * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string or an empty string. + * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `fn` parameter is not a function. */ readonly addTaskFunction: ( name: string,