NeuraLegion/cypress-har-generator

View on GitHub
src/network/HarExporterFactory.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { HarExporter } from './HarExporter';

export interface HarExporterOptions {
  rootDir: string;
  filter?: string;
  transform?: string;
}

export interface HarExporterFactory {
  create(options: HarExporterOptions): Promise<HarExporter>;
}