// This file is based on the following documenations: // => https://github.com/sveltejs/language-tools/blob/master/docs/preprocessors/typescript.md#im-using-an-attributeevent-on-a-dom-element-and-it-throws-a-type-error // => https://github.com/sveltejs/language-tools/issues/431 declare namespace svelte.JSX { interface HTMLAttributes { onoutclick?: (event: CustomEvent & { target: EventTarget & T }) => any; } }