fix lint errors

This commit is contained in:
Olivier Gagnon 2022-03-20 22:14:32 -04:00
parent fb93d97493
commit 00d1d294ed

@ -6667,7 +6667,7 @@ export interface Corporation extends WarehouseAPI, OfficeAPI {
sellShares(amount: number): void; sellShares(amount: number): void;
/** /**
* Get bonus time. * Get bonus time.
* *
* Bonus time is accumulated when the game is offline or if the game is inactive in the browser. * Bonus time is accumulated when the game is offline or if the game is inactive in the browser.
* *
* Bonus time makes the game progress faster. * Bonus time makes the game progress faster.
@ -6675,7 +6675,7 @@ export interface Corporation extends WarehouseAPI, OfficeAPI {
* @returns Bonus time for the Corporation mechanic in milliseconds. * @returns Bonus time for the Corporation mechanic in milliseconds.
*/ */
getBonusTime(): number; getBonusTime(): number;
} }
/** /**