@codechecks/lighthouse-keeper
Version:
Keep an eye on Google Lighthouse score changes
13 lines (12 loc) • 314 B
TypeScript
import { Dictionary } from "ts-essentials";
export declare type MinScores = Dictionary<number | undefined>;
export interface UserProvidedOptions {
url?: string;
buildPath?: string;
minScores?: MinScores;
}
export interface Options {
url: string;
buildPath?: string;
minScores: MinScores;
}