diff --git a/docs/api-reference/clipboard.md b/docs/api-reference/clipboard.md index 339658b1b2ec7..e24cdbeaeec5f 100644 --- a/docs/api-reference/clipboard.md +++ b/docs/api-reference/clipboard.md @@ -177,6 +177,10 @@ type Content = } | { file: PathLike; + } + | { + html: string; + text?: string; // The alternative text representation of the content. }; ```