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>
16 lines
No EOL
619 B
Text
16 lines
No EOL
619 B
Text
import type { SourceMapInput } from '@jridgewell/trace-mapping';
|
|
export type { SourceMapSegment, DecodedSourceMap, EncodedSourceMap, } from '@jridgewell/trace-mapping';
|
|
export type { SourceMapInput };
|
|
export type LoaderContext = {
|
|
readonly importer: string;
|
|
readonly depth: number;
|
|
source: string;
|
|
content: string | null | undefined;
|
|
ignore: boolean | undefined;
|
|
};
|
|
export type SourceMapLoader = (file: string, ctx: LoaderContext) => SourceMapInput | null | undefined | void;
|
|
export type Options = {
|
|
excludeContent?: boolean;
|
|
decodedMappings?: boolean;
|
|
};
|
|
//# sourceMappingURL=types.d.ts.map |