import { ITestSession, TestSessionStats } from './ITestSession'; export interface ISessionExecutionResult { sessionId: string; sessionLabel: string; stats: TestSessionStats; success: boolean; error?: Error; duration: number; } export interface ISessionExecutor { execute(session: ITestSession): Promise; canExecute(session: ITestSession): boolean; } //# sourceMappingURL=ISessionExecutor.d.ts.map