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>
21 lines
No EOL
684 B
Text
21 lines
No EOL
684 B
Text
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/**
|
|
* An extension of Error that includes any stdout or stderr from a child
|
|
* process. Based on the error thrown by `child_process.exec()`.
|
|
* https://github.com/nodejs/node/blob/3aeae8d81b7b78668c37f7a07a72d94781126d49/lib/child_process.js#L150-L176
|
|
*/
|
|
export class ChildProcessError extends Error {
|
|
/**
|
|
* @param {string} message
|
|
* @param {string=} stdout
|
|
* @param {string=} stderr
|
|
*/
|
|
constructor(message: string, stdout?: string | undefined, stderr?: string | undefined);
|
|
stdout: string;
|
|
stderr: string;
|
|
}
|
|
//# sourceMappingURL=child-process-error.d.ts.map |