Skip to content

Commit

Permalink
🤖 Merge PR DefinitelyTyped#64187 parse-link-header: arbitrary attribu…
Browse files Browse the repository at this point in the history
…tes can be undefined by @Johnius
  • Loading branch information
Johnius authored Feb 4, 2023
1 parent c15a2f5 commit 40f11bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/parse-link-header/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ declare namespace parseLinkHeader {
interface Link {
url: string;
rel: string;
[queryParam: string]: string;
[queryParam: string]: string | undefined;
}

interface Links {
[rel: string]: Link;
[rel: string]: Link | undefined;
}
}

Expand Down

0 comments on commit 40f11bf

Please sign in to comment.