UNPKG

kickstart-express

Version:

A powerful CLI tool to quickly scaffold Express.js projects with modern tooling and best practices

9 lines (8 loc) 230 B
/** * @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; }