Prevent error message for rimraf

This commit is contained in:
Geomitron
2020-05-17 21:55:40 -04:00
parent 34fe405fac
commit b9e1d61529
5 changed files with 6 additions and 9 deletions

View File

@@ -31,8 +31,4 @@ export interface DownloadProgress {
type: ProgressType
}
export type ProgressType = 'good' | 'warning' | 'error' | 'cancel' | 'done' | 'fastUpdate'
// export function downloadSorter(p1: DownloadProgress, p2: DownloadProgress) {
// return 0
// // return p1 - p2 // negative if p1 < p2
// }
export type ProgressType = 'good' | 'error' | 'cancel' | 'done' | 'fastUpdate'