Rocky_Mountain_Vending/.pnpm-store/v10/files/76/fe2e667530860071a3363cf94c2c896f018543452b928f39a018b7234eb5730f4c8b056a049f14944f1b281ed9c8f724a75f076af3022219807966de5769c0
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

10 lines
281 B
Text

import type { Callback, Disposer } from '../types.js';
declare class Interceptor {
private callbacks;
constructor();
exit: () => void;
hook: () => void;
register: (callback: Callback) => Disposer;
}
declare const _default: Interceptor;
export default _default;