UNPKG

@azure/monitor-opentelemetry

Version:
14 lines 478 B
/** * Subset of Connection String fields which this SDK can parse. Lower-typecased to * allow for case-insensitivity across field names. * @internal */ export type ConnectionString = { [key in ConnectionStringKey]?: string; }; /** * ConnectionString keys. * @internal */ export type ConnectionStringKey = "authorization" | "aadaudience" | "instrumentationkey" | "ingestionendpoint" | "liveendpoint" | "location" | "endpointsuffix"; //# sourceMappingURL=types.d.ts.map