@embrace-io/web-sdk
Version:
13 lines • 494 B
TypeScript
import { EMB_TYPES, KEY_EMB_TYPE } from "../../constants/attributes.js";
import { Attributes } from "@opentelemetry/api";
import { ReadableSpan } from "@opentelemetry/sdk-trace";
//#region src/instrumentations/session-part/types.d.ts
interface SessionSpanAttributes extends Attributes {
[KEY_EMB_TYPE]: EMB_TYPES.SessionPart;
}
interface SessionPartSpan extends ReadableSpan {
attributes: SessionSpanAttributes;
}
//#endregion
export { SessionPartSpan };
//# sourceMappingURL=types.d.ts.map