* Cookie to clear
| 44 | * Cookie to clear |
| 45 | */ |
| 46 | interface CookieItem { |
| 47 | /** |
| 48 | * Cookie name |
| 49 | */ |
| 50 | name: string | RegExp |
| 51 | |
| 52 | /** |
| 53 | * Expected cookie path |
| 54 | */ |
| 55 | path?: string |
| 56 | |
| 57 | /** |
| 58 | * Expected cookie domain. Useful if you want to erase |
| 59 | * a cookie set in the main domain, from the subdomain. |
| 60 | */ |
| 61 | domain?: string |
| 62 | } |
| 63 | |
| 64 | interface AutoClear { |
| 65 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…