/** * APIMATIC CalculatorLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { ApiResponse, RequestOptions } from '../core'; import { OperationTypeEnum } from '../models/operationTypeEnum'; import { BaseController } from './baseController'; export declare class SimpleCalculatorController extends BaseController { /** * Calculates the expression using the specified operation. * * @param operation The operator to apply on the variables * @param x The LHS value * @param y The RHS value * @return Response from the API call */ getCalculate(operation: OperationTypeEnum, x: number, y: number, requestOptions?: RequestOptions): Promise>; }