- Fix typo in type definitions

This commit is contained in:
Satish Gandham 2021-06-16 10:42:41 +05:30
parent f15eba445c
commit 172bf61648

View File

@ -37,8 +37,8 @@ export enum PerformanceTransactionName {
} }
export type PerfTag = { export type PerfTag = {
name: "string"; name: string;
value: "string"; value: string;
}; };
export interface PerfLog { export interface PerfLog {
sentrySpan: Span; sentrySpan: Span;