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>
19 lines
862 B
Text
19 lines
862 B
Text
import type nodeDagnosticsChannel from "node:diagnostics_channel";
|
|
import { Channel } from "./channel.mjs";
|
|
export declare class TracingChannel<
|
|
StoreType = unknown,
|
|
ContextType extends object = object
|
|
> implements nodeDagnosticsChannel.TracingChannel<StoreType, ContextType> {
|
|
readonly __unenv__: true;
|
|
asyncEnd: Channel<StoreType, ContextType>;
|
|
asyncStart: Channel<StoreType, ContextType>;
|
|
end: Channel<StoreType, ContextType>;
|
|
error: Channel<StoreType, ContextType>;
|
|
start: Channel<StoreType, ContextType>;
|
|
constructor(nameOrChannels: string | nodeDagnosticsChannel.TracingChannelCollection<StoreType, ContextType>);
|
|
subscribe(handlers: nodeDagnosticsChannel.TracingChannelSubscribers<ContextType>): void;
|
|
unsubscribe(handlers: nodeDagnosticsChannel.TracingChannelSubscribers<ContextType>): void;
|
|
traceSync();
|
|
tracePromise();
|
|
traceCallback();
|
|
}
|