beam-cli
Version:
A beautifully simple CLI for running Lighthouse audits on a statically generated (SSG) website
5 lines (4 loc) • 351 B
TypeScript
import type { OutputMode } from 'lighthouse/types/lhr/settings';
import type { Options } from '../options/types.js';
import type { RunnerResultWrapper } from './runner-results.js';
export declare const saveReportsToDisk: (runnerResults: Record<string, RunnerResultWrapper>, options: Options, outputs: OutputMode[]) => Promise<Record<string, string>>;