/** * Interface Definitions * * Core contracts for http-test components. * These interfaces enable dependency injection and testability. */ export type { IHttpFileParser } from './IHttpFileParser'; export type { IRequestExecutor } from './IRequestExecutor'; export type { IAssertionEngine } from './IAssertionEngine'; export type { IVariableManager } from './IVariableManager'; export type { IScriptEngine } from './IScriptEngine';