Rocky_Mountain_Vending/.pnpm-store/v10/files/60/c259d9271f73dd2867b95af56ce3540a613d4482f2220389440bd66f292ef815273264f1a6c2159541a04aaee8355cde059579648efe1c65c71e28c062235e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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