DOC: Update documentation for limitMaterialProduction and limitProductProduction (#221)

This commit is contained in:
Burhanuddin Mustafa Lakdawala 2022-11-26 19:06:47 -07:00 committed by GitHub
parent 1ee71cea19
commit 675c2a0456
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7364,18 +7364,18 @@ export interface WarehouseAPI {
): void;
/**
* Limit Material Production.
* @param divisionName - Name of the division
* @param cityName - Name of the city
* @param materialName - Name of the material
* @param qty - Amount to limit to
* @param divisionName - Name of the division.
* @param cityName - Name of the city.
* @param materialName - Name of the material.
* @param qty - Amount to limit to. Pass a negative value to remove the limit instead.
*/
limitMaterialProduction(divisionName: string, cityName: string, materialName: string, qty: number): void;
/**
* Limit Product Production.
* @param divisionName - Name of the division
* @param cityName - Name of the city
* @param productName - Name of the product
* @param qty - Amount to limit to
* @param divisionName - Name of the division.
* @param cityName - Name of the city.
* @param productName - Name of the product.
* @param qty - Amount to limit to. Pass a negative value to remove the limit instead.
*/
limitProductProduction(divisionName: string, cityName: string, productName: string, qty: number): void;
/**