Files
kiss-firefox/template/externs/webextension_polyfill/webrequest/UrlClassification.hx
2025-02-02 18:08:09 -06:00

12 lines
365 B
Haxe

package webextension_polyfill.webrequest;
typedef UrlClassification = {
/**
Classification flags if the request has been classified and it is first party.
**/
var firstParty : UrlClassificationParty;
/**
Classification flags if the request has been classified and it or its window hierarchy is third party.
**/
var thirdParty : UrlClassificationParty;
};