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
+8 -8
View File
@@ -7364,18 +7364,18 @@ export interface WarehouseAPI {
): void; ): void;
/** /**
* Limit Material Production. * Limit Material Production.
* @param divisionName - Name of the division * @param divisionName - Name of the division.
* @param cityName - Name of the city * @param cityName - Name of the city.
* @param materialName - Name of the material * @param materialName - Name of the material.
* @param qty - Amount to limit to * @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; limitMaterialProduction(divisionName: string, cityName: string, materialName: string, qty: number): void;
/** /**
* Limit Product Production. * Limit Product Production.
* @param divisionName - Name of the division * @param divisionName - Name of the division.
* @param cityName - Name of the city * @param cityName - Name of the city.
* @param productName - Name of the product * @param productName - Name of the product.
* @param qty - Amount to limit to * @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; limitProductProduction(divisionName: string, cityName: string, productName: string, qty: number): void;
/** /**