UNPKG

beam-cli

Version:

A beautifully simple CLI for running Lighthouse audits on a statically generated (SSG) website

10 lines (9 loc) 326 B
import { FC } from 'react'; import { LighthouseResultSummary } from '../../analyse/analyse-lighthouse-results.js'; import { TabNames } from './explorer.js'; export declare const ExplorerTable: FC<{ results: LighthouseResultSummary[]; selectedIndex: number; selectedCategory: string; selectedTab: TabNames; }>;