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>
19 lines
No EOL
667 B
Text
19 lines
No EOL
667 B
Text
import type { GenMapping } from '@jridgewell/gen-mapping';
|
|
import type { DecodedSourceMap, EncodedSourceMap, Options } from './types.mts';
|
|
/**
|
|
* A SourceMap v3 compatible sourcemap, which only includes fields that were
|
|
* provided to it.
|
|
*/
|
|
export default class SourceMap {
|
|
file?: string | null;
|
|
mappings: EncodedSourceMap['mappings'] | DecodedSourceMap['mappings'];
|
|
sourceRoot?: string;
|
|
names: string[];
|
|
sources: (string | null)[];
|
|
sourcesContent?: (string | null)[];
|
|
version: 3;
|
|
ignoreList: number[] | undefined;
|
|
constructor(map: GenMapping, options: Options);
|
|
toString(): string;
|
|
}
|
|
//# sourceMappingURL=source-map.d.ts.map |