Add missing { in TSDoc in vitest.d.ts

This commit is contained in:
NightKev 2025-08-02 14:47:19 -07:00
parent 68eda38bee
commit fb7f010251

View File

@ -63,7 +63,7 @@ declare module "vitest" {
/**
* Check whether a {@linkcode Pokemon} has taken a specific amount of damage.
* @param expectedDamageTaken - The expected amount of damage taken
* @param roundDown - Whether to round down @linkcode expectedDamageTaken} with {@linkcode toDmgValue}; default `true`
* @param roundDown - Whether to round down {@linkcode expectedDamageTaken} with {@linkcode toDmgValue}; default `true`
*/
toHaveTakenDamage(expectedDamageTaken: number, roundDown?: boolean): void;