-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix default param values with implied
this
param
Resolves #2698
- Loading branch information
Showing
4 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
type Square = { | ||
color: "red" | "blue" | "green"; | ||
}; | ||
|
||
type TAnimator = { | ||
( | ||
this: Square, | ||
numSpins: number, | ||
direction: "clockwise" | "counterclockwise", | ||
): string; | ||
}; | ||
|
||
export const animator = function ( | ||
numSpins: number = 2, | ||
direction: "clockwise" | "counterclockwise" = "counterclockwise", | ||
) { | ||
console.log(this.color, numSpins, direction); | ||
return "Hello World"; | ||
} satisfies TAnimator; | ||
|
||
animator.call({ color: "blue" }, 77); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters