mirror of
				https://git.disroot.org/wolfree/wolfree-dockerfile
				synced 2025-06-06 00:49:20 +02:00 
			
		
		
		
	clarify the exhaustiveness check with TypeScript
This commit is contained in:
		| @@ -1,6 +1,7 @@ | ||||
| /* SPDX-License-Identifier: AGPL-3.0-or-later */ | ||||
|  | ||||
| import React from "react"; | ||||
| import typescriptNever from "./typescriptNever"; | ||||
|  | ||||
| export default (event: React.FormEvent<HTMLFormElement>): void => { | ||||
|   event.preventDefault(); | ||||
| @@ -15,8 +16,7 @@ export default (event: React.FormEvent<HTMLFormElement>): void => { | ||||
|   } else if (i instanceof File) { | ||||
|     console.warn({ i }); | ||||
|   } else { | ||||
|     const typescriptExhaustivenessCheck: never = i; | ||||
|     console.warn({ typescriptExhaustivenessCheck }); | ||||
|     typescriptNever(i); | ||||
|   } | ||||
|  | ||||
|   window.location.assign(url); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user