Skip to content

Commit

Permalink
refactor(animations): Fix JSDoc comment (angular#50893)
Browse files Browse the repository at this point in the history
JSDoc comments should start with 2 stars or the annotations would not be picked up by the AIO workflow.

With this fix, the internal methods are no longer visible in the doc.

PR Close angular#50893
  • Loading branch information
JeanMeche authored and ChellappanRajan committed Jan 23, 2024
1 parent 8221f26 commit 34e09df
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ export class MockAnimationPlayer extends NoopAnimationPlayer {
}
}

/* @internal */
/** @internal */
onInit(fn: () => any) {
this._onInitFns.push(fn);
}

/* @internal */
/** @internal */
override init() {
super.init();
this._onInitFns.forEach(fn => fn());
Expand All @@ -111,7 +111,7 @@ export class MockAnimationPlayer extends NoopAnimationPlayer {
this.__finished = true;
}

/* @internal */
/** @internal */
triggerMicrotask() {}

override play(): void {
Expand Down

0 comments on commit 34e09df

Please sign in to comment.