NeuraLegion/cypress-har-generator

View on GitHub
src/cdp/Connection.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Network } from '../network';
import type { NetworkOptions } from './NetworkOptions';

export interface Connection {
  open(): Promise<void>;

  close(): Promise<void>;

  discoverNetwork(options?: NetworkOptions): Network;
}