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>
14 lines
452 B
Text
14 lines
452 B
Text
export type EventSwcLoadFailure = {
|
|
eventName: string;
|
|
payload: {
|
|
platform: string;
|
|
arch: string;
|
|
nodeVersion: string;
|
|
nextVersion: string;
|
|
wasm?: 'enabled' | 'fallback' | 'failed';
|
|
glibcVersion?: string;
|
|
installedSwcPackages?: string;
|
|
nativeBindingsErrorCode?: string;
|
|
};
|
|
};
|
|
export declare function eventSwcLoadFailure(event?: EventSwcLoadFailure['payload']): Promise<void>;
|