Rocky_Mountain_Vending/.pnpm-store/v10/files/21/a6c6ca02dfa271649a5275eaa0822a5c33e9a5c7049a1c750a110dde5ab47599938bacf84f88095bf06025bcf4c0354a87540fa3f4908258c3ace40324078d
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

21 lines
519 B
Text

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
declare module 'http-link-header' {
export interface Reference {
uri: string;
rel: string;
[index: string]: string;
}
export interface Link {
refs: Reference[];
has(attribute: string, value: string): boolean;
get(attribute: string, value: string): Array<Reference>;
rel(value: string): Reference;
set(ref: Reference): Reference;
}
export function parse(header: string): Link;
}