happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
16 lines • 420 B
TypeScript
import URL from '../../url/URL.cjs';
import ICookie from '../ICookie.cjs';
/**
* Cookie string.
*/
export default class CookieURLUtility {
/**
* Returns "true" if cookie matches URL.
*
* @param cookie Cookie.
* @param url URL.
* @returns "true" if cookie matches URL.
*/
static cookieMatchesURL(cookie: ICookie, url: URL): boolean;
}
//# sourceMappingURL=CookieURLUtility.d.ts.map