Skip to content

Commit

Permalink
Applied new sorting of union types
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Oct 8, 2024
1 parent dfc56a6 commit a76cc90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rewrite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ export type RewriteRuleCookieFlagSpec = (
}
| {
lifetime?: number | undefined;
path?: string | undefined;
secure?: boolean | undefined;
}
| {
lifetime?: number | undefined;
path?: string | undefined;
}
| {
lifetime?: number | undefined;
path?: string | undefined;
secure?: boolean | undefined;
}
) &
RewriteRuleCookieFlagMinimalSpec;
Expand Down

0 comments on commit a76cc90

Please sign in to comment.