Почему после запуска моей функции консоль выдает мне:
ReferenceError: Response is not defined
мой код:
@Get('/download/:fileId')
@Header('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet')
async downloadFile(
@Param('fileId') id: number,
@Res() response: Response
) {
const fileName= await this.reportService.getFileName(id);
response.headers.set('Content-Type',`attachment; filename=${fileName}`);
return await this.fileService.downloadFile(id);
}
моя функция - загрузить файл из локальной папки проекта с использованием Nest JS,
спасибо за любую помощь