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>
18 lines
No EOL
608 B
Text
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 |