summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/npm/node_modules/undici/types/cookies.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/Provider/npm/node_modules/undici/types/cookies.d.ts')
-rw-r--r--g4f/Provider/npm/node_modules/undici/types/cookies.d.ts28
1 files changed, 0 insertions, 28 deletions
diff --git a/g4f/Provider/npm/node_modules/undici/types/cookies.d.ts b/g4f/Provider/npm/node_modules/undici/types/cookies.d.ts
deleted file mode 100644
index aa38cae4..00000000
--- a/g4f/Provider/npm/node_modules/undici/types/cookies.d.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-/// <reference types="node" />
-
-import type { Headers } from './fetch'
-
-export interface Cookie {
- name: string
- value: string
- expires?: Date | number
- maxAge?: number
- domain?: string
- path?: string
- secure?: boolean
- httpOnly?: boolean
- sameSite?: 'Strict' | 'Lax' | 'None'
- unparsed?: string[]
-}
-
-export function deleteCookie (
- headers: Headers,
- name: string,
- attributes?: { name?: string, domain?: string }
-): void
-
-export function getCookies (headers: Headers): Record<string, string>
-
-export function getSetCookies (headers: Headers): Cookie[]
-
-export function setCookie (headers: Headers, cookie: Cookie): void