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
21 lines
1.2 KiB
Plaintext
21 lines
1.2 KiB
Plaintext
import { MetricRatingThresholds, ReportOpts, TTFBMetric } from './types';
|
|
/** Thresholds for TTFB. See https://web.dev/articles/ttfb#what_is_a_good_ttfb_score */
|
|
export declare const TTFBThresholds: MetricRatingThresholds;
|
|
/**
|
|
* Calculates the [TTFB](https://web.dev/articles/ttfb) value for the
|
|
* current page and calls the `callback` function once the page has loaded,
|
|
* along with the relevant `navigation` performance entry used to determine the
|
|
* value. The reported value is a `DOMHighResTimeStamp`.
|
|
*
|
|
* Note, this function waits until after the page is loaded to call `callback`
|
|
* in order to ensure all properties of the `navigation` entry are populated.
|
|
* This is useful if you want to report on other metrics exposed by the
|
|
* [Navigation Timing API](https://w3c.github.io/navigation-timing/). For
|
|
* example, the TTFB metric starts from the page's [time
|
|
* origin](https://www.w3.org/TR/hr-time-2/#sec-time-origin), which means it
|
|
* includes time spent on DNS lookup, connection negotiation, network latency,
|
|
* and server processing time.
|
|
*/
|
|
export declare const onTTFB: (onReport: (metric: TTFBMetric) => void, opts?: ReportOpts) => void;
|
|
//# sourceMappingURL=onTTFB.d.ts.map
|