Fix missing promise type

This commit is contained in:
Alice Gaudon 2020-11-20 13:42:09 +01:00
parent f7c9686269
commit 31601cadd0
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ export default class GiteaRepoLatestReleaseController extends Controller {
}
const file = fs.createWriteStream(tmpAssetPath);
await new Promise((resolve, reject) => {
await new Promise<void>((resolve, reject) => {
const httpRequest = https.get(downloadProperties.asset.url, res => {
res.on('end', () => {
resolve();