Files
irontelemetry-js/dist/types/config.d.ts
logikonline 8c300c1f8d Include dist folder for git-based installs
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>
2026-01-07 15:12:47 -05:00

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