fix build, missing api build

This commit is contained in:
Mechiel Lukkien 2023-11-11 20:06:42 +01:00
parent 50c9873c2b
commit 8f55d0ada6
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -2051,7 +2051,7 @@
},
{
"Name": "Filename",
"Docs": "File name based on \"name\" attribute of \"Content-Type\", or the \"filename\" attribute of \"Content-Disposition\". todo: decode non-ascii character sets",
"Docs": "File name based on \"name\" attribute of \"Content-Type\", or the \"filename\" attribute of \"Content-Disposition\".",
"Typewords": [
"string"
]

View file

@ -337,7 +337,7 @@ export interface MessageEnvelope {
// viewable text or HTML part.
export interface Attachment {
Path?: number[] | null // Indices into top-level message.Part.Parts.
Filename: string // File name based on "name" attribute of "Content-Type", or the "filename" attribute of "Content-Disposition". todo: decode non-ascii character sets
Filename: string // File name based on "name" attribute of "Content-Type", or the "filename" attribute of "Content-Disposition".
Part: Part
}