diff options
| author | altaf-creator <dev@altafcreator.com> | 2025-11-09 11:15:19 +0800 |
|---|---|---|
| committer | altaf-creator <dev@altafcreator.com> | 2025-11-09 11:15:19 +0800 |
| commit | 8eff962cab608341a6f2fedc640a0e32d96f26e2 (patch) | |
| tree | 05534d1a720ddc3691d346c69b4972555820a061 /frontend-old/node_modules/web-vitals/dist/modules/onTTFB.d.ts | |
pain
Diffstat (limited to 'frontend-old/node_modules/web-vitals/dist/modules/onTTFB.d.ts')
| -rw-r--r-- | frontend-old/node_modules/web-vitals/dist/modules/onTTFB.d.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/frontend-old/node_modules/web-vitals/dist/modules/onTTFB.d.ts b/frontend-old/node_modules/web-vitals/dist/modules/onTTFB.d.ts new file mode 100644 index 0000000..14d7e4f --- /dev/null +++ b/frontend-old/node_modules/web-vitals/dist/modules/onTTFB.d.ts @@ -0,0 +1,19 @@ +import { MetricRatingThresholds, ReportOpts, TTFBMetric } from './types.js'; +/** 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; |
