NetscriptDefinitions: fix jsdoc for Corp research functions

This commit is contained in:
Kyle Hargraves
2022-01-21 07:37:16 -06:00
parent 07fe3c1906
commit b7604709e5

View File

@ -6179,14 +6179,14 @@ export interface OfficeAPI {
/** /**
* Get the cost to unlock research * Get the cost to unlock research
* @param divisionName - Name of the division * @param divisionName - Name of the division
* @param cityName - Name of the city * @param researchName - Name of the research
* @returns cost * @returns cost
*/ */
getResearchCost(divisionName: string, researchName: string): number; getResearchCost(divisionName: string, researchName: string): number;
/** /**
* Gets if you have unlocked a research * Gets if you have unlocked a research
* @param divisionName - Name of the division * @param divisionName - Name of the division
* @param cityName - Name of the city * @param researchName - Name of the research
* @returns true is unlocked, false if not * @returns true is unlocked, false if not
*/ */
hasResearched(divisionName: string, researchName: string): boolean; hasResearched(divisionName: string, researchName: string): boolean;