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>
14 lines
No EOL
512 B
Text
14 lines
No EOL
512 B
Text
import { IdGenerator } from '../../IdGenerator';
|
|
export declare class RandomIdGenerator implements IdGenerator {
|
|
/**
|
|
* Returns a random 16-byte trace ID formatted/encoded as a 32 lowercase hex
|
|
* characters corresponding to 128 bits.
|
|
*/
|
|
generateTraceId: () => string;
|
|
/**
|
|
* Returns a random 8-byte span ID formatted/encoded as a 16 lowercase hex
|
|
* characters corresponding to 64 bits.
|
|
*/
|
|
generateSpanId: () => string;
|
|
}
|
|
//# sourceMappingURL=RandomIdGenerator.d.ts.map |