Rocky_Mountain_Vending/.pnpm-store/v10/files/c1/e390a98e19713df2e0eabb2cc7ea96ed3057fc24e804bf2ad04b2bd1ad16f45c1e7741b5cd0df70c8542f004769138f33b7584d8167173515650d213049380
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

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();
}