Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/ac25252ba0836709d49a4b3ac7297fe7b27f04f8c343ad5bd697b94ac203a1faa014e24c19f2e3c26e408be9e27011361d5a1899c13061764d0e4e58540233
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

31 lines
No EOL
1.2 KiB
Text

import { ENVIRONMENT } from '@opentelemetry/core';
import { Sampler } from './Sampler';
/**
* Load default configuration. For fields with primitive values, any user-provided
* value will override the corresponding default value. For fields with
* non-primitive values (like `spanLimits`), the user-provided value will be
* used to extend the default value.
*/
export declare function loadDefaultConfig(): {
sampler: Sampler;
forceFlushTimeoutMillis: number;
generalLimits: {
attributeValueLengthLimit: number;
attributeCountLimit: number;
};
spanLimits: {
attributeValueLengthLimit: number;
attributeCountLimit: number;
linkCountLimit: number;
eventCountLimit: number;
attributePerEventCountLimit: number;
attributePerLinkCountLimit: number;
};
mergeResourceWithDefaults: boolean;
};
/**
* Based on environment, builds a sampler, complies with specification.
* @param environment optional, by default uses getEnv(), but allows passing a value to reuse parsed environment
*/
export declare function buildSamplerFromEnv(environment?: Required<ENVIRONMENT>): Sampler;
//# sourceMappingURL=config.d.ts.map