Skip to content

Commit

Permalink
Merge pull request #81 from hubertmalkowski/master
Browse files Browse the repository at this point in the history
Make interface CookieJar exported
  • Loading branch information
valeriangalliat authored Feb 2, 2024
2 parents 22f880c + 29283ff commit 6c25590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ type NodeFetchHeaders = Headers & {
raw?: () => { [name: string]: string[] }
}

interface CookieJar {
export interface CookieJar {
getCookieString: (currentUrl: string) => Promise<string>
setCookie: (cookieString: string, currentUrl: string, opts: { ignoreError: boolean }) => Promise<any>
}
Expand Down

0 comments on commit 6c25590

Please sign in to comment.