flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
10 lines (8 loc) • 305 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/optimization/linear-optimization-solution
interface gas$LinearOptimizationSolution {
getObjectiveValue(): number;
getStatus(): gas$LinerOptimization$Status;
getVariableValue(variableName: string): number;
isValid(): boolean;
}