/** * Microsoft Edge fingerprint definitions. * * Edge is Chromium-based, so its TLS fingerprint matches Chrome's — same GREASE * behavior, same cipher families, and the same extension wire order. Edge * differs only in the advertised user agent string and the `sec-ch-ua` brand * list (includes "Microsoft Edge"). HTTP/2 settings track Chrome closely. * Cipher / group / version / signature values mirror curl-impersonate's * ground-truth signature; the extension order is shared verbatim with Chrome * via {@link chromeExtensionOrder} (captured via curl_cffi against tls.peet.ws). */ import type { BrowserProfile } from "../types.js"; export declare const edge120: BrowserProfile; export declare const edge128: BrowserProfile; export declare const EdgeProfiles: { readonly edge120: BrowserProfile; readonly edge128: BrowserProfile; }; //# sourceMappingURL=edge.d.ts.map