@memory-bank/mcp
Version:
Memory-enabled Co-Pilot (MCP) server for managing project documentation and context
16 lines • 396 B
TypeScript
/**
* Generic interface for use cases
*
* @template TInput Type of the input data
* @template TOutput Type of the output data
*/
export interface IUseCase<TInput, TOutput> {
/**
* Execute the use case
*
* @param input Input data
* @returns Promise resolving to output data
*/
execute(input: TInput): Promise<TOutput>;
}
//# sourceMappingURL=IUseCase.d.ts.map