From cf66d243f597b987a357e13ca618f69eb674c958 Mon Sep 17 00:00:00 2001 From: Turadg Aleahmad Date: Tue, 28 Nov 2023 15:47:05 -0800 Subject: [PATCH] chore(types): misc fixes for tsdoc parsing --- packages/assert/src/types.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/assert/src/types.js b/packages/assert/src/types.js index 78ff6caf676..a4c287e4179 100644 --- a/packages/assert/src/types.js +++ b/packages/assert/src/types.js @@ -11,7 +11,7 @@ * @callback BaseAssert * The `assert` function itself. * - * @param {*} flag The truthy/falsy value + * @param {any} flag The truthy/falsy value * @param {Details} [optDetails] The details to throw * @param {ErrorConstructor} [ErrorConstructor] An optional alternate error * constructor to use. @@ -58,8 +58,8 @@ * The `assert.equal` method * * Assert that two values must be `Object.is`. - * @param {*} actual The value we received - * @param {*} expected What we wanted + * @param {any} actual The value we received + * @param {any} expected What we wanted * @param {Details} [optDetails] The details to throw * @param {ErrorConstructor} [ErrorConstructor] An optional alternate error * constructor to use. @@ -207,7 +207,7 @@ * ``` * * @callback AssertQuote - * @param {*} payload What to declassify + * @param {any} payload What to declassify * @param {(string|number)} [spaces] * @returns {StringablePayload} The declassified payload */