ElectronCookiesGetFilter
Unofficial
Filter used to query cookies from an Electron session.
Import:
import type { ElectronCookiesGetFilter } from '@obsidian-typings/obsidian-public-latest';Signature:
export interface ElectronCookiesGetFilterProperties
| Property | Type | Description | |
|---|---|---|---|
| domain? | string | Retrieves cookies whose domains match or are subdomains of domains. | |
| name? | string | Filters cookies by name. | |
| path? | string | Retrieves cookies whose path matches path. | |
| secure? | boolean | Filters cookies by their Secure property. | |
| session? | boolean | Filters out session or persistent cookies. | |
| url? | string | Retrieves cookies which are associated with url. Empty implies retrieving cookies of all URLs. |