-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e21ffa
commit ff61eb4
Showing
4 changed files
with
78 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import type { HeaderParsedForm } from "./types/jmap-mail"; | ||
|
||
/** | ||
* Generate a key to retrieve a header field | ||
* | ||
* @example | ||
* ```ts | ||
* headerField("Some-Header", "Addresses") // "header:Some-Header:asAddresses" | ||
* ``` | ||
*/ | ||
export function headerField< | ||
Name extends string, | ||
Form extends keyof HeaderParsedForm | ||
>(name: Name, form: Form) { | ||
return `header:${name}:as${form}` as const; | ||
} | ||
|
||
export function allHeaderFields< | ||
Name extends string, | ||
Form extends keyof HeaderParsedForm | ||
>(name: Name, form: Form) { | ||
const header = headerField(name, form); | ||
|
||
return `${header}:all` as const; | ||
} |