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
725 B
Text
28 lines
725 B
Text
/**
|
|
* Holds meta information to customize the behavior of Sentry's server-side event processing.
|
|
**/
|
|
export interface DebugMeta {
|
|
images?: Array<DebugImage>;
|
|
}
|
|
export type DebugImage = WasmDebugImage | SourceMapDebugImage | MachoDebugImage;
|
|
interface WasmDebugImage {
|
|
type: 'wasm';
|
|
debug_id: string;
|
|
code_id?: string | null;
|
|
code_file: string;
|
|
debug_file?: string | null;
|
|
}
|
|
interface SourceMapDebugImage {
|
|
type: 'sourcemap';
|
|
code_file: string;
|
|
debug_id: string;
|
|
}
|
|
interface MachoDebugImage {
|
|
type: 'macho';
|
|
debug_id: string;
|
|
image_addr: string;
|
|
image_size?: number;
|
|
code_file?: string;
|
|
}
|
|
export {};
|
|
//# sourceMappingURL=debugMeta.d.ts.map
|