beam-cli
Version:
A beautifully simple CLI for running Lighthouse audits on a statically generated (SSG) website
9 lines (8 loc) • 306 B
TypeScript
import { FC } from 'react';
import { LighthouseResultsSummary } from '../../analyse/analyse-lighthouse-results.js';
export declare const App: FC<{
results: LighthouseResultsSummary;
}>;
export declare const startApp: ({ results }: {
results: LighthouseResultsSummary;
}) => import("ink").Instance;