UNPKG

playwright-performance-reporter

Version:

Measure and publish performance metrics from browser dev-tools when running playwright

26 lines (25 loc) 650 B
import { type SupportedBrowsers, type TargetMetric, type FirefoxMetricObserver } from '../../types/index.js'; import { type BrowserClient } from '../client.js'; export declare class FirefoxDevelopmentTools implements BrowserClient { private readonly options; /** * @inheritdoc */ constructor(options: Record<string, any>); /** * @inheritdoc */ connect(): Promise<void>; /** * @inheritdoc */ getMetric(metric: FirefoxMetricObserver): Promise<TargetMetric[]>; /** * @inheritdoc */ destroy(): null; /** * @inheritdoc */ getBrowserName(): SupportedBrowsers; }