Rocky_Mountain_Vending/.pnpm-store/v10/files/64/b6e6273eda55d4be3d370c401094625badee530fe95ed2a1dc03edaed3d45fdbf3f0fc5fa051efeba5978804390cb9cb79c5bcb638029193e1ab4f552ea84b
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

9 lines
276 B
Text

import Dispatcher from "./dispatcher";
export {
getGlobalDispatcher,
setGlobalDispatcher
}
declare function setGlobalDispatcher<DispatcherImplementation extends Dispatcher>(dispatcher: DispatcherImplementation): void;
declare function getGlobalDispatcher(): Dispatcher;