Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/e9754974ab2f53054d97e8d2f53bfff55732df35c43240af1890661d1d70d5871914faac9810f5c11dd3cfe147373f16159ebc91f8cb84485224d7f1883c5a
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

24 lines
No EOL
1.1 KiB
Text

import { Attributes } from '@opentelemetry/api';
import type { ConnectionConfig, PoolActualConfig, Query, QueryOptions } from 'mysql';
import type * as mysqlTypes from 'mysql';
/**
* Get an Attributes map from a mysql connection config object
*
* @param config ConnectionConfig
*/
export declare function getConnectionAttributes(config: ConnectionConfig | PoolActualConfig): Attributes;
/**
* @returns the database statement being executed.
*/
export declare function getDbStatement(query: string | Query | QueryOptions): string;
export declare function getDbValues(query: string | Query | QueryOptions, values?: any[]): string;
/**
* The span name SHOULD be set to a low cardinality value
* representing the statement executed on the database.
*
* @returns SQL statement without variable arguments or SQL verb
*/
export declare function getSpanName(query: string | Query | QueryOptions): string;
export declare function arrayStringifyHelper(arr: Array<unknown> | undefined): string;
export declare function getPoolName(pool: mysqlTypes.Pool): string;
//# sourceMappingURL=utils.d.ts.map