beam-cli
Version:
A beautifully simple CLI for running Lighthouse audits on a statically generated (SSG) website
10 lines (9 loc) • 395 B
TypeScript
import type { Flags } from '../flags/validate.js';
import type { Options } from '../options/types.js';
import type { ConfigurationOptions } from './types.js';
/** Build up the configuration options
*
* Order of Preference (lowest -> highest):
* Defaults -> Config File -> Flags
*/
export declare const mergeConfigurations: (flags: Flags, userConfiguration: ConfigurationOptions) => Options;