Rocky_Mountain_Vending/.pnpm-store/v10/files/96/e8534c796af4896783e14f41c222dac4e75b29ce7671d52fcf49767f5062ce7020d57045121056ba938d88ea8121a9005e7e4daa93d5eea94f7692de3455a0
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

23 lines
417 B
Text

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
declare module 'cssstyle/lib/parsers.js' {
interface TYPES {
INTEGER: 1;
NUMBER: 2;
LENGTH: 3;
PERCENT: 4;
URL: 5;
COLOR: 6;
STRING: 7;
ANGLE: 8;
KEYWORD: 9;
NULL_OR_EMPTY_STR: 10;
}
export var TYPES: TYPES;
export function valueType(val: any): TYPES[keyof TYPES] | undefined;
}