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, 28 insertions, 0 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
new file mode 100644
index 00000000..aa38cae4
--- /dev/null
+++ b/g4f/Provider/npm/node_modules/undici/types/cookies.d.ts
@@ -0,0 +1,28 @@
+/// <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