API: Change type of skill name parameter of skillMaxUpgradeCount API (#1712)

This commit is contained in:
catloversg
2024-10-22 10:39:56 +07:00
committed by GitHub
parent c5e50ba327
commit 3ce2ae5fd7
2 changed files with 11 additions and 3 deletions

View File

@@ -5332,7 +5332,11 @@ interface BladeburnerFormulas {
* @param skillPoints - Number of skill points to upgrade the skill. It must be a positive number.
* @returns Number of times that you can upgrade the skill.
*/
skillMaxUpgradeCount(name: string, level: number, skillPoints: number): number;
skillMaxUpgradeCount(
name: BladeburnerSkillName | `${BladeburnerSkillName}`,
level: number,
skillPoints: number,
): number;
}
/**