diff --git a/documentation/docs/07-misc/03-typescript.md b/documentation/docs/07-misc/03-typescript.md index 5e1aed4d97..2298b764e7 100644 --- a/documentation/docs/07-misc/03-typescript.md +++ b/documentation/docs/07-misc/03-typescript.md @@ -211,7 +211,7 @@ declare namespace svelteHTML { // enhance attributes interface HTMLAttributes { // If you want to use the beforeinstallprompt event - 'onbeforeinstallprompt'?: (event: any) => any; + onbeforeinstallprompt?: (event: any) => any; // If you want to use myCustomAttribute={..} (note: all lowercase) mycustomattribute?: any; // You can replace any with something more specific if you like }