UNPKG

perfrunner-core

Version:

Automated UI performance test tool to measure performance changes for the web apps and sites

10 lines (9 loc) 452 B
import { PerfRunnerOptions } from './profiler/perf-options'; import { IPerformanceResult } from './db/scheme'; import { IStorage } from './types/storage'; /** * Profile given URL and returns performance data * @param {PerfRunnerOptions} options Profiling parameters * @returns {Promise<IPerformanceResult>} performance result */ export declare function profile(options: PerfRunnerOptions, storage?: IStorage): Promise<IPerformanceResult>;