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>
9 lines
493 B
Text
9 lines
493 B
Text
import { ClientReport } from '../types-hoist/clientreport';
|
|
import { ClientReportEnvelope } from '../types-hoist/envelope';
|
|
/**
|
|
* Creates client report envelope
|
|
* @param discarded_events An array of discard events
|
|
* @param dsn A DSN that can be set on the header. Optional.
|
|
*/
|
|
export declare function createClientReportEnvelope(discarded_events: ClientReport['discarded_events'], dsn?: string, timestamp?: number): ClientReportEnvelope;
|
|
//# sourceMappingURL=clientreport.d.ts.map
|