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>
18 lines
658 B
Text
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();
|
|
}
|