import { HttpRequest } from './httpInterface'; export type TranspilerOutput = { result: boolean; data?: T; error?: Error; }; export interface UseCaseTranspilerInterface { transpile(input: HttpRequest): TranspilerOutput; }