You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/recent-doc/guest-js/index.ts
-17Lines changed: 0 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,6 @@ import { invoke } from '@tauri-apps/api/core'
13
13
/**
14
14
* Adds a document to this app's recent documents list.
15
15
*
16
-
* #### Requirements
17
-
*
18
-
* - `path` must be a local filesystem path.
19
-
* - For installer-based Windows builds, define handled extensions in `tauri.conf.json` at `bundle.fileAssociations` so associations are created on install and removed on uninstall.
20
-
*
21
-
* #### Platform-specific
22
-
*
23
-
* - **Linux / Android / iOS:** Unsupported.
24
-
*
25
16
* @param path Local filesystem path to the document.
26
17
*
27
18
* @example
@@ -42,10 +33,6 @@ async function addRecentDocument(path: string): Promise<void> {
42
33
/**
43
34
* Gets this app's recent documents list from the operating system.
44
35
*
45
-
* #### Platform-specific
46
-
*
47
-
* - **Linux / Android / iOS:** Unsupported.
48
-
*
49
36
* @example
50
37
* ```typescript
51
38
* import { getRecentDocuments } from '@tauri-apps/plugin-recent-doc';
@@ -64,10 +51,6 @@ async function getRecentDocuments(): Promise<string[]> {
64
51
/**
65
52
* Clears this app's recent documents list in the operating system.
66
53
*
67
-
* #### Platform-specific
68
-
*
69
-
* - **Linux / Android / iOS:** Unsupported.
70
-
*
71
54
* @example
72
55
* ```typescript
73
56
* import { clearRecentDocuments } from '@tauri-apps/plugin-recent-doc';
0 commit comments