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>
6 lines
No EOL
393 B
Text
6 lines
No EOL
393 B
Text
/**
|
|
* Merge two baggage headers into one, where the existing one takes precedence.
|
|
* The order of the existing baggage will be preserved, and new entries will be added to the end.
|
|
*/
|
|
export declare function mergeBaggageHeaders<Existing extends string | string[] | number | undefined>(existing: Existing, baggage: string): string | undefined | Existing;
|
|
//# sourceMappingURL=baggage.d.ts.map |