/** * Heuristics used at parse-time for HAR data */ import { Entry } from "har-format"; import { WaterfallEntryIndicator } from "../typing/waterfall"; import { RequestType } from "../typing/waterfall"; /** * Check if the document (disregarding any initial http->https redirects) is loaded over a secure connection. * @param {Entry[]} data - the waterfall entries data. * @returns {boolean} */ export declare function documentIsSecure(data: Entry[]): boolean; /** Scans `entry` for noteworthy issues or infos and highlights them */ export declare function collectIndicators(entry: Entry, index: number, docIsTLS: boolean, requestType: RequestType): WaterfallEntryIndicator[];