Rocky_Mountain_Vending/.pnpm-store/v10/files/f6/78fd868497f919fe8ff11f3eb961cf10541759aa9205ee8096f0fab139ba381ae0f54688b1ce234821efb16ae267b441992627846be0af9604c69177fc6e07
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

27 lines
515 B
Text

declare module "estree-walker" {
export interface Node {
start: number;
end: number;
type: string;
[propName: string]: any;
}
export type WalkerContext = {
skip: () => void;
};
export type WalkerListener = (
this: WalkerContext,
node: Node,
parent?: Node,
prop?: string,
index?: number
) => void;
export interface WalkerOptions {
enter?: WalkerListener;
leave?: WalkerListener;
}
export function walk(ast: Node, options: WalkerOptions): void;
}