 f1b6793145
			
		
	
	f1b6793145
	
	
	
		
			
			* web: fix turnstile types after update After running 'npm update' on the dev tree, the build started to fail with these options and types no longer being set correctly in the source tree. I have explicitly included the Turnstile object as a sub-component of Window, and modified the CaptchaStage to understand the TurnstileObject and TurnstileOptions, and the build now completes. * eslint says to prefer this format * Google recaptcha (aka Turnstile) doesn't understand the "invisible" setting; that's purely an HCaptcha thing. * web: removing the typecast means I no longer need the type. * Locking pyright to 1.1.338 and maintaining it. * web: locking down hard After reading [this guide](https://medium.com/@anjusha.khandavalli/decoding-commonly-used-symbols-in-package-json-file-e08f3939c9e4), I've locked down the version of pyright to a specific and immovable version until we can get a better read on how the Pyright upgrade breaks things. * Update is specific to package-lock.json. Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
		
			
				
	
	
		
			15 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| declare module "*.css";
 | |
| 
 | |
| declare module "*.md" {
 | |
|     const html: string;
 | |
|     const metadata: { [key: string]: string };
 | |
|     const filename: string;
 | |
| }
 | |
| 
 | |
| declare namespace Intl {
 | |
|     class ListFormat {
 | |
|         constructor(locale: string, args: { [key: string]: string });
 | |
|         public format: (items: string[]) => string;
 | |
|     }
 | |
| }
 |