Base/default implementation of revealFileAsync

pull/1486/head
Даниїл Григор'єв 2 years ago
parent 8750568522
commit 5c0d546d88
No known key found for this signature in database
GPG Key ID: B890DF16341D8C1D

@ -52,4 +52,14 @@ export class StorageInterface {
// Default implementation does not allow deleting files
return Promise.reject();
}
/**
* Reveals a file in the file manager
* @param {string} filename
* @returns {Promise<void>}
*/
revealFileAsync(filename) {
// Default implementation does not allow revealing files
return Promise.reject();
}
}

Loading…
Cancel
Save