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

16 lines
634 B
Text

import type { TransformOptions } from 'next/dist/compiled/babel/core';
export declare function consumeIterator(iter: Iterator<any>): any;
/**
* Source map standard format as to revision 3.
*
* `TransformOptions` uses this type, but doesn't export it separately
*/
export type SourceMap = NonNullable<TransformOptions['inputSourceMap']>;
/**
* An extension of the normal babel configuration, with extra `babel-loader`-specific fields that transforms can read.
*
* See: https://github.com/babel/babel-loader/blob/main/src/injectCaller.js
*/
export type BabelLoaderTransformOptions = TransformOptions & {
target?: string;
};