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>
21 lines
519 B
Text
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;
|
|
}
|