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>
19 lines
800 B
Text
19 lines
800 B
Text
import { Event } from './types-hoist/event';
|
|
import { StackParser } from './types-hoist/stacktrace';
|
|
/**
|
|
* Retrieve metadata for a specific JavaScript file URL.
|
|
*
|
|
* Metadata is injected by the Sentry bundler plugins using the `_experiments.moduleMetadata` config option.
|
|
*/
|
|
export declare function getMetadataForUrl(parser: StackParser, filename: string): any | undefined;
|
|
/**
|
|
* Adds metadata to stack frames.
|
|
*
|
|
* Metadata is injected by the Sentry bundler plugins using the `_experiments.moduleMetadata` config option.
|
|
*/
|
|
export declare function addMetadataToStackFrames(parser: StackParser, event: Event): void;
|
|
/**
|
|
* Strips metadata from stack frames.
|
|
*/
|
|
export declare function stripMetadataFromStackFrames(event: Event): void;
|
|
//# sourceMappingURL=metadata.d.ts.map
|