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>
11 lines
581 B
Text
11 lines
581 B
Text
import { InternalBaseTransportOptions, Transport, TransportMakeRequestResponse, TransportRequestExecutor } from '../types-hoist/transport';
|
|
import { PromiseBuffer } from '../utils/promisebuffer';
|
|
export declare const DEFAULT_TRANSPORT_BUFFER_SIZE = 64;
|
|
/**
|
|
* Creates an instance of a Sentry `Transport`
|
|
*
|
|
* @param options
|
|
* @param makeRequest
|
|
*/
|
|
export declare function createTransport(options: InternalBaseTransportOptions, makeRequest: TransportRequestExecutor, buffer?: PromiseBuffer<TransportMakeRequestResponse>): Transport;
|
|
//# sourceMappingURL=base.d.ts.map
|