Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
18 lines
721 B
Plaintext
18 lines
721 B
Plaintext
/**
|
|
* Checks if the baggage header has Sentry values.
|
|
*/
|
|
export declare function baggageHeaderHasSentryValues(baggageHeader: string): boolean;
|
|
/**
|
|
* Gets the full URL from a given URL string.
|
|
*/
|
|
export declare function getFullURL(url: string): string | undefined;
|
|
/**
|
|
* Checks if the entry is a PerformanceResourceTiming.
|
|
*/
|
|
export declare function isPerformanceResourceTiming(entry: PerformanceEntry): entry is PerformanceResourceTiming;
|
|
/**
|
|
* Creates a Headers object from a record of string key-value pairs, and returns undefined if it fails.
|
|
*/
|
|
export declare function createHeadersSafely(headers: Record<string, string> | undefined): Headers | undefined;
|
|
//# sourceMappingURL=utils.d.ts.map
|