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 committed by David Mehren
parent 2c6af85f14
commit 0e4b65ca9d
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -20,7 +20,7 @@ export interface MediaBackend {
* Delete a file from the backend * Delete a file from the backend
* @param fileName String to identify the file * @param fileName String to identify the file
* @param backendData Internal backend data * @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>; deleteFile(fileName: string, backendData: BackendData): Promise<void>;
} }