Unignored dist/ so yarn/npm can install from git URL without needing to build locally. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
626 B
TypeScript
21 lines
626 B
TypeScript
import type { TelemetryOptions, ParsedDsn } from './types';
|
|
/**
|
|
* Default configuration values
|
|
*/
|
|
export declare const DEFAULT_OPTIONS: Partial<TelemetryOptions>;
|
|
/**
|
|
* Parse a DSN string into its components
|
|
* Format: https://pk_live_xxx@irontelemetry.com
|
|
*/
|
|
export declare function parseDsn(dsn: string): ParsedDsn;
|
|
/**
|
|
* Validate and merge options with defaults
|
|
*/
|
|
export declare function resolveOptions(options: TelemetryOptions): Required<TelemetryOptions> & {
|
|
parsedDsn: ParsedDsn;
|
|
};
|
|
/**
|
|
* Generate a unique event ID
|
|
*/
|
|
export declare function generateEventId(): string;
|
|
//# sourceMappingURL=config.d.ts.map
|