Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface Protocol.Network.DeleteCookiesRequest
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { DeleteCookiesRequest } = Protocol.Network;

Properties

name: string

Name of the cookies to remove.

optional
url: string

If specified, deletes all the cookies with the given name where domain and path match provided URL.

optional
domain: string

If specified, deletes only cookies with the exact domain.

optional
path: string

If specified, deletes only cookies with the exact path.