Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/1ee66ef322b1f2b8c696c1c8a321c3b7b5e626ab6c42bfe1817999ec4263c398f53e7dbaa0e8678ed0a26f6553b0258212f7a97c8f98cc0df550303fe2347b
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

29 lines
644 B
Text

declare module 'jsonlint-mod' {
export function parse(input: string): unknown;
interface SchemaIDReference {
'@id': string;
}
interface SchemaSourceItem {
'@id': string;
'@type': string;
'rdfs:label'?: string;
'rdfs:subClassOf'?: SchemaIDReference | SchemaIDReference[];
'http://schema.org/domainIncludes'?: SchemaIDReference | SchemaIDReference[];
}
interface SchemaTreeItem {
name: string;
parent: string[];
}
export interface JSONSchemaSource {
'@graph': SchemaSourceItem[];
}
export interface JSONSchemaTree {
types: SchemaTreeItem[];
properties: SchemaTreeItem[];
}
}