updated buyback and sells functions docs

This commit is contained in:
phyzical
2022-01-19 08:25:12 +08:00
parent dd47a8baa0
commit 71ac4aacf1
4 changed files with 14 additions and 8 deletions

View File

@@ -6489,12 +6489,16 @@ export interface Corporation extends WarehouseAPI, OfficeAPI {
issueDividends(percent: number): void;
/**
* Buyback Shares
* @param amount - Amount of shares to buy back.
*
*/
buyBackShares(amt: number): void;
buyBackShares(amount: number): void;
/**
* Sell Shares
*/
sellShares(amt: number): void;
* Sell Shares
* @param amount - Amount of shares to sell.
*
*/
sellShares(amount: number): void;
}
/**