mirror of
https://github.com/mjl-/mox.git
synced 2025-01-14 01:06:27 +03:00
fix build, missing api build
This commit is contained in:
parent
50c9873c2b
commit
8f55d0ada6
2 changed files with 2 additions and 2 deletions
|
@ -2051,7 +2051,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "Filename",
|
"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": [
|
"Typewords": [
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
|
|
|
@ -337,7 +337,7 @@ export interface MessageEnvelope {
|
||||||
// viewable text or HTML part.
|
// viewable text or HTML part.
|
||||||
export interface Attachment {
|
export interface Attachment {
|
||||||
Path?: number[] | null // Indices into top-level message.Part.Parts.
|
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
|
Part: Part
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue