Skip to content

Commit 3573a7c

Browse files
[office-js][office-js-preview] (Outlook) Update attachment properties in reply forms (DefinitelyTyped#72201)
1 parent 70f4570 commit 3573a7c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

types/office-js-preview/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22523,7 +22523,7 @@ declare namespace Office {
2252322523
url?: string;
2252422524
/**
2252522525
* If true, indicates that the attachment will be shown inline in the message body and shouldn't be displayed in the attachment list.
22526-
* Only use if `type` is set to `file`.
22526+
* Only use if `type` is set to `base64` or `file`.
2252722527
*/
2252822528
inLine?: boolean;
2252922529
/**
@@ -22537,7 +22537,7 @@ declare namespace Office {
2253722537
*
2253822538
* [Api set: Mailbox 1.15]
2253922539
*/
22540-
base64File?: string;
22540+
base64file?: string;
2254122541
}
2254222542
/**
2254322543
* A ReplyFormData object that contains body or attachment data and a callback function. Used when displaying a reply form.

types/office-js/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22008,7 +22008,7 @@ declare namespace Office {
2200822008
url?: string;
2200922009
/**
2201022010
* If true, indicates that the attachment will be shown inline in the message body and shouldn't be displayed in the attachment list.
22011-
* Only use if `type` is set to `file`.
22011+
* Only use if `type` is set to `base64` or `file`.
2201222012
*/
2201322013
inLine?: boolean;
2201422014
/**
@@ -22022,7 +22022,7 @@ declare namespace Office {
2202222022
*
2202322023
* [Api set: Mailbox 1.15]
2202422024
*/
22025-
base64File?: string;
22025+
base64file?: string;
2202622026
}
2202722027
/**
2202822028
* A ReplyFormData object that contains body or attachment data and a callback function. Used when displaying a reply form.

0 commit comments

Comments
 (0)