Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
No EOL
816 B
Text
28 lines
No EOL
816 B
Text
/**
|
|
* Verify output path to use, either stdout or a file path.
|
|
* @param {string} path
|
|
* @return {string}
|
|
*/
|
|
export function checkOutputPath(path: string): string;
|
|
/**
|
|
* Writes the output.
|
|
* @param {string} output
|
|
* @param {LH.OutputMode} mode
|
|
* @param {string} path
|
|
* @return {Promise<void>}
|
|
*/
|
|
export function write(output: string, mode: LH.OutputMode, path: string): Promise<void>;
|
|
/**
|
|
* An enumeration of acceptable output modes:
|
|
* 'json': JSON formatted results
|
|
* 'html': An HTML report
|
|
* 'csv': CSV formatted results
|
|
* @type {LH.Util.SelfMap<LH.OutputMode>}
|
|
*/
|
|
export const OutputMode: LH.Util.SelfMap<LH.OutputMode>;
|
|
/**
|
|
* Returns a list of valid output options.
|
|
* @return {Array<string>}
|
|
*/
|
|
export function getValidOutputOptions(): Array<string>;
|
|
//# sourceMappingURL=printer.d.ts.map |