Responsible for retrieving the data of the specified file * * @param {string} filename - the name of file to retrieve * * @return {Promise} a promise that should pass with the file data or fail on error
(filename: string)
| 63 | * @return {Promise} a promise that should pass with the file data or fail on error |
| 64 | */ |
| 65 | getFileData(filename: string): Promise<any> {} |
| 66 | |
| 67 | /** Returns an absolute URL where the file can be accessed |
| 68 | * |