/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface FirstContentfulPaintEvent { /** * Schema version. */ version: "1.0.0"; /** * Time until the first contentful paint in milliseconds */ value: number; /** * Attributions for FCP */ attribution?: { /** * Time from navigation start until the first response byte */ timeToFirstByte: number; /** * Delta between TTFB and FCP */ firstByteToFCP: number; /** * Document loading state when FCP occurred */ loadState: "loading" | "dom-interactive" | "dom-content-loaded" | "complete"; }; }