mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-11 18:09:29 +02:00
fix @privateremarks
`
This commit is contained in:
parent
e794a4bf90
commit
584c4a8774
@ -16,7 +16,7 @@ export type * from "#moves/move";
|
||||
* Map of move subclass names to their respective classes.
|
||||
* Does not include the ChargeMove subclasses. For that, use `ChargingMoveClassMap`.
|
||||
*
|
||||
* @privateremarks
|
||||
* @privateRemarks
|
||||
* The `never` field (`declare private _: never`) in some classes is necessary
|
||||
* to ensure typescript does not improperly narrow a failed `is` guard to `never`.
|
||||
*
|
||||
|
@ -1284,7 +1284,7 @@ export class PostDefendContactApplyTagChanceAbAttr extends PostDefendAbAttr {
|
||||
/**
|
||||
* Set stat stages when the user gets hit by a critical hit
|
||||
*
|
||||
* @privateremarks
|
||||
* @privateRemarks
|
||||
* It is the responsibility of the caller to ensure that this ability attribute is only applied
|
||||
* when the user has been hit by a critical hit; such an event is not checked here.
|
||||
*
|
||||
|
@ -11,7 +11,7 @@ export abstract class Phase {
|
||||
/**
|
||||
* The string name of the phase, used to identify the phase type for {@linkcode is}
|
||||
*
|
||||
* @privateremarks
|
||||
* @privateRemarks
|
||||
*
|
||||
* When implementing a phase, you must set the `phaseName` property to the name of the phase.
|
||||
*/
|
||||
|
@ -843,7 +843,7 @@ class ModifierOption extends Phaser.GameObjects.Container {
|
||||
/**
|
||||
* Start the tweens responsible for animating the option's appearance
|
||||
*
|
||||
* @privateremarks
|
||||
* @privateRemarks
|
||||
* This method is unusual. It "returns" (one via the actual return, one by via appending to the `promiseHolder`
|
||||
* parameter) two promises. The promise returned by the method resolves once the option's appearance animations have
|
||||
* completed, and is meant to allow callers to synchronize with the completion of the option's appearance animations.
|
||||
|
Loading…
Reference in New Issue
Block a user