MediaBackendInterface: Correct JSDoc of deleteFile

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-02-27 12:24:02 +01:00
parent 062104f64b
commit 7f9c310e58

View file

@ -20,7 +20,7 @@ export interface MediaBackend {
* Delete a file from the backend
* @param fileName String to identify the file
* @param backendData Internal backend data
* @throws {MediaBackendError} - there was an error retrieving the url
* @throws {MediaBackendError} - there was an error deleting the file
*/
deleteFile(fileName: string, backendData: BackendData): Promise<void>;
}