UNPKG

freelii-passkey-kit

Version:

A helper library for creating and using smart wallet accounts on the Stellar blockchain.

13 lines (12 loc) 322 B
export type ExporterType = "otlp" | "console" | "custom"; export interface TelemetryConfig { enabled: boolean; serviceName?: string; samplingRate?: number; exporter: { type: ExporterType; endpoint?: string; headers?: Record<string, string>; exporterInstance?: any; }; }