diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts index 2fbe97438e2..a06f27c1619 100644 --- a/src/modules/helpers/index.ts +++ b/src/modules/helpers/index.ts @@ -627,9 +627,9 @@ export class HelpersModule { * * This does the same as `objectValue` except that it ignores (the values assigned to) the numeric keys added for TypeScript enums. * + * @template EnumType Type of generic enums, automatically inferred by TypeScript. + * @template EnumValueType Type of enumObject property, also automatically inferred by TypeScript. * @param enumObject Enum to pick the value from. - * @param Type of generic enums, automatically inferred by TypeScript. - * @param Type of enumObject property, also automatically inferred by TypeScript. * * @example * enum Color { Red, Green, Blue }