fix: typo (#131)
This commit is contained in:
		
							parent
							
								
									6ff0dc59ed
								
							
						
					
					
						commit
						6432b5275c
					
				| 
						 | 
					@ -64,7 +64,7 @@ export function update(win: Electron.BrowserWindow) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function startDownload(
 | 
					function startDownload(
 | 
				
			||||||
  callback: (error: Error | null, info: ProgressInfo) => void,
 | 
					  callback: (error: Error | null, info: ProgressInfo) => void,
 | 
				
			||||||
  complete: (evnet: UpdateDownloadedEvent) => void,
 | 
					  complete: (event: UpdateDownloadedEvent) => void,
 | 
				
			||||||
) {
 | 
					) {
 | 
				
			||||||
  autoUpdater.on('download-progress', info => callback(null, info))
 | 
					  autoUpdater.on('download-progress', info => callback(null, info))
 | 
				
			||||||
  autoUpdater.on('error', error => callback(error, null))
 | 
					  autoUpdater.on('error', error => callback(error, null))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue