/**
 * @interface CalculationResult
 * @description Defines the structure for the result of a calculation.
 * @property {number} result - The result of the calculation.
 */
export interface CalculationResult {
  result: number;
}
