Rocky_Mountain_Vending/.pnpm-store/v10/files/84/95b2e7ec6c1a8de9cb2de65f0a4b946c026f9ce5fb121b96a26d8e3871350d7f9b62af170cf0d45b2a606ee41842045ef5329b2e7f6fcc7ea1f60d7de27de7
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

13 lines
351 B
Text

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
declare module 'metaviewport-parser' {
export function parseMetaViewPortContent(S: string): {
validProperties: {[p: string]: number | string},
unknownProperties: {[p: string]: number | string},
invalidValues: {[p: string]: number | string};
};
}