import { ITestSession } from './ITestSession'; export interface ISessionRepository { save(session: ITestSession): void; findByLabel(label: string): ITestSession | null; findById(id: string): ITestSession | null; findAll(): ITestSession[]; exists(id: string): boolean; delete(id: string): boolean; clear(): void; } //# sourceMappingURL=ISessionRepository.d.ts.map