* Return a function that opens a save box on a specific client. * * @param client Client to open a save box on.
(client: BackClient)
| 142 | * @param client Client to open a save box on. |
| 143 | */ |
| 144 | public showSaveDialogBack(client: BackClient): ShowSaveDialogFunc { |
| 145 | return (options) => { |
| 146 | return this.request(client, BackOut.OPEN_SAVE_DIALOG, options); |
| 147 | }; |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Return a function that opens a load file box on a specific client. |
no test coverage detected