perfrunner-core
Version:
Automated UI performance test tool to measure performance changes for the web apps and sites
14 lines (13 loc) • 553 B
TypeScript
import { Metrics } from 'puppeteer';
import { PerfRunnerOptions, NetworkSetup } from './profiler/perf-options';
import { IPerformanceResult } from './db/scheme';
import { profile } from './perfrunner';
import { ExtendedPerformanceEntry } from './profiler/types';
import { PerfRunResult } from './types/perfrunresult';
import * as logger from './logger';
export { PerfRunnerOptions, NetworkSetup };
export { IPerformanceResult, ExtendedPerformanceEntry };
export { PerfRunResult };
export { logger };
export { profile };
export { Metrics };