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 {
/**
* The target {@linkcode Pokemon}
* @see {@linkcode Pokemon#getEffectiveStat}
* @see {@linkcode Pokemon.getEffectiveStat}
*/
enemy?: Pokemon;
/**
* The {@linkcode Move} being used
* @see {@linkcode Pokemon#getEffectiveStat}
* @see {@linkcode Pokemon.getEffectiveStat}
*/
move?: Move;
/**
* Whether a critical hit occurred or not
* @see {@linkcode Pokemon#getEffectiveStat}
* @see {@linkcode Pokemon.getEffectiveStat}
* @defaultValue `false`
*/
isCritical?: boolean;