Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/0c59c8fdb02aafceb5fbaa4bbed5f1cf107c4d3d07a6d3e2c7c62b40fb730a85f022852a934fe7d649f3cdb5f96d3974ad84eec73f92afad464c6e5a1c3442
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

18 lines
No EOL
608 B
Text

import { Context, Span } from '@opentelemetry/api';
export declare enum RPCType {
HTTP = "http"
}
declare type HTTPMetadata = {
type: RPCType.HTTP;
route?: string;
span: Span;
};
/**
* Allows for future rpc metadata to be used with this mechanism
*/
export declare type RPCMetadata = HTTPMetadata;
export declare function setRPCMetadata(context: Context, meta: RPCMetadata): Context;
export declare function deleteRPCMetadata(context: Context): Context;
export declare function getRPCMetadata(context: Context): RPCMetadata | undefined;
export {};
//# sourceMappingURL=rpc-metadata.d.ts.map