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>
6 lines
287 B
Text
6 lines
287 B
Text
/**
|
|
* Returns an environment variable key base on signing name.
|
|
* @param signingName - The signing name to use in the key
|
|
* @returns The environment variable key in format AWS_BEARER_TOKEN_<SIGNING_NAME>
|
|
*/
|
|
export declare const getBearerTokenEnvKey: (signingName: string) => string;
|