12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
|
|
import type { Attributes, AttributeValue } from '../common/Attributes';
|
||
|
|
/**
|
||
|
|
* @deprecated please use {@link Attributes}
|
||
|
|
* @since 1.0.0
|
||
|
|
*/
|
||
|
|
export type SpanAttributes = Attributes;
|
||
|
|
/**
|
||
|
|
* @deprecated please use {@link AttributeValue}
|
||
|
|
* @since 1.0.0
|
||
|
|
*/
|
||
|
|
export type SpanAttributeValue = AttributeValue;
|
||
|
|
//# sourceMappingURL=attributes.d.ts.map
|