Fix TSDocs in to-have-effective-stat.ts

Unfortunately VSCode doesn't support `Class#property`
This commit is contained in:
NightKev 2025-08-02 15:18:34 -07:00
parent 76606ae33a
commit 68b4c5987e

View File

@ -9,17 +9,17 @@ import type { MatcherState, SyncExpectationResult } from "@vitest/expect";
export interface ToHaveEffectiveStatMatcherOptions { export interface ToHaveEffectiveStatMatcherOptions {
/** /**
* The target {@linkcode Pokemon} * The target {@linkcode Pokemon}
* @see {@linkcode Pokemon#getEffectiveStat} * @see {@linkcode Pokemon.getEffectiveStat}
*/ */
enemy?: Pokemon; enemy?: Pokemon;
/** /**
* The {@linkcode Move} being used * The {@linkcode Move} being used
* @see {@linkcode Pokemon#getEffectiveStat} * @see {@linkcode Pokemon.getEffectiveStat}
*/ */
move?: Move; move?: Move;
/** /**
* Whether a critical hit occurred or not * Whether a critical hit occurred or not
* @see {@linkcode Pokemon#getEffectiveStat} * @see {@linkcode Pokemon.getEffectiveStat}
* @defaultValue `false` * @defaultValue `false`
*/ */
isCritical?: boolean; isCritical?: boolean;