Rocky_Mountain_Vending/.pnpm-store/v10/files/07/e956cad4dd2849a24800205cbb30ed49be35449c893ed021d877259b855f41b97b98b42deaed64f90050fcdabe9f6a92714dba8584e6bb9990c7803d7978b9
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

22 lines
909 B
Text

import type * as Lantern from '../types/types.js';
import { BaseNode } from './BaseNode.js';
declare class NetworkNode<T = Lantern.AnyNetworkObject> extends BaseNode<T> {
_request: Lantern.NetworkRequest<T>;
constructor(networkRequest: Lantern.NetworkRequest<T>);
get type(): 'network';
get startTime(): number;
get endTime(): number;
get rawRequest(): Readonly<T>;
get request(): Lantern.NetworkRequest<T>;
get initiatorType(): string;
get fromDiskCache(): boolean;
get isNonNetworkProtocol(): boolean;
/**
* Returns whether this network request can be downloaded without a TCP connection.
* During simulation we treat data coming in over a network connection separately from on-device data.
*/
get isConnectionless(): boolean;
hasRenderBlockingPriority(): boolean;
cloneWithoutRelationships(): NetworkNode<T>;
}
export { NetworkNode };