Update doc for some grafting API funcs

This commit is contained in:
nickofolas 2022-03-27 15:44:25 -04:00
parent 5890ce0cf1
commit bd3f256536

@ -3728,6 +3728,7 @@ export interface Grafting {
*
* @param augName - Name of the aug to check the price of. Must be an exact match.
* @returns The cost required to craft the named augmentation.
* @throws Will error if an invalid Augmentation name is provided.
*/
getAugmentationCraftPrice(augName: string): number;
@ -3738,6 +3739,7 @@ export interface Grafting {
*
* @param augName - Name of the aug to check the crafting time of. Must be an exact match.
* @returns The time required, in millis, to craft the named augmentation.
* @throws Will error if an invalid Augmentation name is provided.
*/
getAugmentationCraftTime(augName: string): number;