docs(new): migrate FileChooser docs to TSDoc (#6092)

Co-authored-by: martinsplitt <martin@geekonaut.de>
This commit is contained in:
Martin Splitt
2020-06-24 12:18:53 +02:00
committed by Mathias Bynens
parent 785551997f
commit 60904da4cd
7 changed files with 62 additions and 30 deletions

View File

@@ -4,6 +4,8 @@
## FileChooser.accept() method
Accept the file chooser request with given paths.
<b>Signature:</b>
```typescript
@@ -14,7 +16,7 @@ accept(filePaths: string[]): Promise<void>;
| Parameter | Type | Description |
| --- | --- | --- |
| filePaths | string\[\] | |
| filePaths | string\[\] | If some of the <code>filePaths</code> are relative paths, then they are resolved relative to the [current working directory](https://nodejs.org/api/process.html#process_process_cwd)<!-- -->. |
<b>Returns:</b>