export interface ComparisonRepository {
  getAll(): string[];
  add(productId: string): void;
  remove(productId: string): void;
  clear(): void;
  has(productId: string): boolean;
  count(): number;
}
