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>
12 lines
338 B
Text
12 lines
338 B
Text
import Errors from './errors'
|
|
|
|
export default MockErrors
|
|
|
|
declare namespace MockErrors {
|
|
/** The request does not match any registered mock dispatches. */
|
|
export class MockNotMatchedError extends Errors.UndiciError {
|
|
constructor(message?: string);
|
|
name: 'MockNotMatchedError';
|
|
code: 'UND_MOCK_ERR_MOCK_NOT_MATCHED';
|
|
}
|
|
}
|