From a0627eb8e7191ab626c79c9993dc7638afca0a30 Mon Sep 17 00:00:00 2001 From: Robin Genz Date: Sat, 22 Jun 2024 10:24:56 +0200 Subject: [PATCH] docs: run docgen [skip ci] --- packages/file-opener/README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/file-opener/README.md b/packages/file-opener/README.md index 10c0d538..f8d078cd 100644 --- a/packages/file-opener/README.md +++ b/packages/file-opener/README.md @@ -80,8 +80,6 @@ openFile(options: OpenFileOptions) => Promise Open a file with the default application. -Only available on Android and iOS. - | Param | Type | | ------------- | ----------------------------------------------------------- | | **`options`** | OpenFileOptions | @@ -96,10 +94,11 @@ Only available on Android and iOS. #### OpenFileOptions -| Prop | Type | Description | Since | -| -------------- | ------------------- | ------------------------------------------------------------------------------ | ----- | -| **`path`** | string | The path of the file. | 0.0.1 | -| **`mimeType`** | string | The mime type of the file. If not specified, the mime type will be determined. | 0.0.1 | +| Prop | Type | Description | Since | +| -------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | ----- | +| **`blob`** | Blob | The blob instance of the file to open. Only available on Web. | 6.1.0 | +| **`path`** | string | The path of the file. Only available on Android and iOS. | 0.0.1 | +| **`mimeType`** | string | The mime type of the file. If not specified, the mime type will be determined. Only available on Android and iOS. | 0.0.1 |