AboutSupportDeveloper GuideVersion 45.150.101.1

Type Alias GetPerformanceStatsOptions

GetPerformanceStatsOptions: {
    browser?: boolean;
    include?: (string | RegExp)[];
    resources?: boolean;
}

Performance Entry Types

Type declaration

  • Optionalbrowser?: boolean

    Whether to include hereio internal runtime metrics. Defaults to false. Pass true to include.

  • Optionalinclude?: (string | RegExp)[]

    Optional filter for custom performance marks and measures. When omitted, all custom marks and measures are collected. When specified, only entries whose names match one of the filters are collected. Strings match by substring; RegExp matches by test.

  • Optionalresources?: boolean

    Include resource timing entries from each View / Frame / Window. Defaults to true. Pass false to omit them.