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>
8 lines
884 B
Text
8 lines
884 B
Text
import * as Handlers from './handlers/handlers.js';
|
|
import * as Lantern from './lantern/lantern.js';
|
|
import type * as Types from './types/types.js';
|
|
type NetworkRequest = Lantern.Types.NetworkRequest<Types.Events.SyntheticNetworkRequest>;
|
|
declare function createProcessedNavigation(parsedTrace: Handlers.Types.ParsedTrace, frameId: string, navigationId: string): Lantern.Types.Simulation.ProcessedNavigation;
|
|
declare function createNetworkRequests(trace: Lantern.Types.Trace, parsedTrace: Handlers.Types.ParsedTrace, startTime?: number, endTime?: number): NetworkRequest[];
|
|
declare function createGraph(requests: Lantern.Types.NetworkRequest[], trace: Lantern.Types.Trace, parsedTrace: Handlers.Types.ParsedTrace, url?: Lantern.Types.Simulation.URL): Lantern.Graph.Node<Types.Events.SyntheticNetworkRequest>;
|
|
export { createGraph, createNetworkRequests, createProcessedNavigation, };
|