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
* @param path This is a required field, the path to the document. The path should NOT contains any scheme prefix.
451
+
* @param {string} scheme URI scheme that needs to support, optional
450
452
*/
451
-
openDocument(path: string): void;
453
+
openDocument(path: string,scheme?: string): void;
454
+
455
+
/**
456
+
* Displays an options menu using [UIDocumentInteractionController](https://developer.apple.com/reference/uikit/uidocumentinteractioncontroller).[presentOptionsMenu](https://developer.apple.com/documentation/uikit/uidocumentinteractioncontroller/1616814-presentoptionsmenu)
457
+
* @param {string} path Path of the file to be open.
458
+
* @param {string} scheme URI scheme that needs to support, optional
* Displays a menu for opening the document using [UIDocumentInteractionController](https://developer.apple.com/reference/uikit/uidocumentinteractioncontroller).[presentOpenInMenu](https://developer.apple.com/documentation/uikit/uidocumentinteractioncontroller/1616807-presentopeninmenu)
464
+
* @param {string} path Path of the file to be open.
465
+
* @param {string} scheme URI scheme that needs to support, optional
* Displays a full-screen preview of the target document using [UIDocumentInteractionController](https://developer.apple.com/reference/uikit/uidocumentinteractioncontroller).[presentPreview](https://developer.apple.com/documentation/uikit/uidocumentinteractioncontroller/1616828-presentpreview)
471
+
* @param {string} path Path of the file to be open.
472
+
* @param {string} scheme URI scheme that needs to support, optional
0 commit comments