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>
12 lines
521 B
Text
12 lines
521 B
Text
type GeneratedColumn = number;
|
|
type SourcesIndex = number;
|
|
type SourceLine = number;
|
|
type SourceColumn = number;
|
|
type NamesIndex = number;
|
|
export type SourceMapSegment = [GeneratedColumn] | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn] | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn, NamesIndex];
|
|
export declare const COLUMN = 0;
|
|
export declare const SOURCES_INDEX = 1;
|
|
export declare const SOURCE_LINE = 2;
|
|
export declare const SOURCE_COLUMN = 3;
|
|
export declare const NAMES_INDEX = 4;
|
|
export {};
|