Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wjhsf committed Jan 9, 2025
1 parent 8e39ae1 commit 0b9d798
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions api/docs/tough-cookie.prefixsecurityenum.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ The following values can be used to configure how a [CookieJar](./tough-cookie.c
**Signature:**

```typescript
PrefixSecurityEnum: Readonly<{
SILENT: "silent";
STRICT: "strict";
DISABLED: "unsafe-disabled";
}>
PrefixSecurityEnum: {
readonly SILENT: "silent";
readonly STRICT: "strict";
readonly DISABLED: "unsafe-disabled";
}
```
10 changes: 5 additions & 5 deletions api/tough-cookie.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,11 @@ export function permuteDomain(domain: string, allowSpecialUseDomain?: boolean):
export function permutePath(path: string): string[];

// @public
export const PrefixSecurityEnum: Readonly<{
SILENT: "silent";
STRICT: "strict";
DISABLED: "unsafe-disabled";
}>;
export const PrefixSecurityEnum: {
readonly SILENT: "silent";
readonly STRICT: "strict";
readonly DISABLED: "unsafe-disabled";
};

// @public
export type SerializedCookie = {
Expand Down

0 comments on commit 0b9d798

Please sign in to comment.