Rocky_Mountain_Vending/.pnpm-store/v10/files/17/ef682b24eb85e00f3b571058d701671948970eb8fd7bab80c5adf32fea61d7c429b348a72e8b0a50da0ba4888fbda0ed459a4f0daa6010590dd4952e4221a9
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

18 lines
658 B
Text

import type nodeDiagnosticsChannel from "node:diagnostics_channel";
export declare const getChannels: unknown;
export declare class Channel<
StoreType,
ContextType
> implements nodeDiagnosticsChannel.Channel<StoreType, ContextType> {
readonly __unenv__: true;
name: nodeDiagnosticsChannel.Channel["name"];
get hasSubscribers();
_subscribers: nodeDiagnosticsChannel.ChannelListener[];
constructor(name: nodeDiagnosticsChannel.Channel["name"]);
subscribe(onMessage: nodeDiagnosticsChannel.ChannelListener);
unsubscribe(onMessage: nodeDiagnosticsChannel.ChannelListener);
publish(message: unknown): void;
bindStore();
unbindStore();
runStores();
}