beam-cli
Version:
A beautifully simple CLI for running Lighthouse audits on a statically generated (SSG) website
8 lines (7 loc) • 425 B
TypeScript
import { LighthouseResultsSummary } from '../analyse/analyse-lighthouse-results.js';
/**
* Saves the summary results for all the runs to local output folder
* - This file is used when the cli is started with the `viewlast` flag as a way
* to view and explore the results without running all the tests again.
*/
export declare const saveResultsToDisk: (results: LighthouseResultsSummary, folder: string) => Promise<void>;