Rocky_Mountain_Vending/.pnpm-store/v10/files/68/bba7976c41d6a5e268de61af999f370cc5074c9db8247a91b953d0ebbe951b74d5e040d2af73723607ee2514351a467f7d571c281117e7dac522511a2e3dba
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

18 lines
682 B
Text

import { Log, LogSeverityLevel, ParameterizedString } from '@sentry/core';
export type CaptureLogArgs = [
/*message*/ ParameterizedString,
/*attributes*/ Log['attributes']
] | [
/*messageTemplate*/ string,
/*messageParams*/ Array<unknown>,
/*attributes*/ Log['attributes']
];
/**
* Capture a log with the given level.
*
* @param level - The level of the log.
* @param message - The message to log.
* @param attributes - Arbitrary structured data that stores information about the log - e.g., userId: 100.
*/
export declare function captureLog(level: LogSeverityLevel, ...args: CaptureLogArgs): void;
//# sourceMappingURL=capture.d.ts.map