/// declare namespace svelteHTML { // Every namespace eligible for use needs to implement the following two functions function mapElementTag( tag: K ): ElementTagNameMap[K]; function mapElementTag( tag: K ): SVGElementTagNameMap[K]; function mapElementTag( tag: any ): any; // needs to be any because used in context of function createElement( // "undefined | null" because of element: Key | undefined | null, attrs: Elements[Key] ): Key extends keyof ElementTagNameMap ? ElementTagNameMap[Key] : Key extends keyof SVGElementTagNameMap ? SVGElementTagNameMap[Key] : any; type NativeElement = HTMLElement; // TypeScript SVGElement has no `dataset` (Chrome 55+, Firefox 51+). type Element = NativeElement & { dataset: DOMStringMap; }; // // Event Handler Types // ---------------------------------------------------------------------- type EventHandler = svelte.JSX.EventHandler; type ClipboardEventHandler = svelte.JSX.ClipboardEventHandler; type CompositionEventHandler = svelte.JSX.CompositionEventHandler; type DragEventHandler = svelte.JSX.DragEventHandler; type FocusEventHandler = svelte.JSX.FocusEventHandler; type FormEventHandler = svelte.JSX.FormEventHandler; type ChangeEventHandler = svelte.JSX.ChangeEventHandler; type KeyboardEventHandler = svelte.JSX.KeyboardEventHandler; type MouseEventHandler = svelte.JSX.MouseEventHandler; type TouchEventHandler = svelte.JSX.TouchEventHandler; type PointerEventHandler = svelte.JSX.PointerEventHandler; type UIEventHandler = svelte.JSX.UIEventHandler; type WheelEventHandler = svelte.JSX.WheelEventHandler; type AnimationEventHandler = svelte.JSX.AnimationEventHandler; type TransitionEventHandler = svelte.JSX.TransitionEventHandler; type MessageEventHandler = svelte.JSX.MessageEventHandler; // See CSS 3 CSS-wide keywords https://www.w3.org/TR/css3-values/#common-keywords // See CSS 3 Explicit Defaulting https://www.w3.org/TR/css-cascade-3/#defaulting-keywords // "all CSS properties can accept these values" type CSSWideKeyword = svelte.JSX.CSSWideKeyword; // See CSS 3 type https://drafts.csswg.org/css-values-3/#percentages type CSSPercentage = svelte.JSX.CSSPercentage; // See CSS 3 type https://drafts.csswg.org/css-values-3/#lengths type CSSLength = svelte.JSX.CSSLength; // This interface is not complete. Only properties accepting // unit-less numbers are listed here (see CSSProperty.js in React) // eslint-disable-next-line @typescript-eslint/no-empty-interface interface DOMAttributes extends svelte.JSX.DOMAttributes {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface AriaAttributes extends svelte.JSX.AriaAttributes {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface HTMLAttributes extends svelte.JSX.HTMLAttributes {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SVGAttributes extends svelte.JSX.SVGAttributes { 'xlink:actuate'?: string | undefined; 'xlink:arcrole'?: string | undefined; 'xlink:href'?: string | undefined; 'xlink:role'?: string | undefined; 'xlink:show'?: string | undefined; 'xlink:title'?: string | undefined; 'xlink:type'?: string | undefined; 'xml:base'?: string | undefined; 'xml:lang'?: string | undefined; 'xml:space'?: string | undefined; 'xmlns'?: string | undefined; 'xmlns:xlink'?: string | undefined; } // eslint-disable-next-line @typescript-eslint/no-empty-interface interface HTMLProps extends HTMLAttributes {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SVGProps extends SVGAttributes {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SvelteInputProps extends svelte.JSX.SvelteInputProps {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SvelteWindowProps extends svelte.JSX.SvelteWindowProps {} interface SapperAnchorProps { "sapper:noscroll"?: true | undefined | null; "sapper:prefetch"?: true | undefined | null; } interface SvelteKitAnchorProps { "sveltekit:noscroll"?: true | undefined | null; "sveltekit:prefetch"?: true | undefined | null; "sveltekit:reload"?: true | undefined | null; } // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SvelteMediaTimeRange extends svelte.JSX.SvelteMediaTimeRange {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SvelteMediaProps extends svelte.JSX.SvelteMediaProps {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SvelteVideoProps extends svelte.JSX.SvelteVideoProps {} // no "extends svelte.JSX" because else we wouldn't get the references to the right interfaces interface IntrinsicElements { // HTML a: HTMLProps & SapperAnchorProps & SvelteKitAnchorProps; abbr: HTMLProps; address: HTMLProps; area: HTMLProps; article: HTMLProps; aside: HTMLProps; audio: HTMLProps & SvelteMediaProps; b: HTMLProps; base: HTMLProps; bdi: HTMLProps; bdo: HTMLProps; big: HTMLProps; blockquote: HTMLProps; body: HTMLProps; br: HTMLProps; button: HTMLProps; canvas: HTMLProps; caption: HTMLProps; cite: HTMLProps; code: HTMLProps; col: HTMLProps; colgroup: HTMLProps; data: HTMLProps; datalist: HTMLProps; dd: HTMLProps; del: HTMLProps; details: HTMLProps; dfn: HTMLProps; dialog: HTMLProps; div: HTMLProps; dl: HTMLProps; dt: HTMLProps; em: HTMLProps; embed: HTMLProps; fieldset: HTMLProps; figcaption: HTMLProps; figure: HTMLProps; footer: HTMLProps; form: HTMLProps; h1: HTMLProps; h2: HTMLProps; h3: HTMLProps; h4: HTMLProps; h5: HTMLProps; h6: HTMLProps; head: HTMLProps; header: HTMLProps; hgroup: HTMLProps; hr: HTMLProps; html: HTMLProps; i: HTMLProps; iframe: HTMLProps; img: HTMLProps; input: SvelteInputProps; ins: HTMLProps; kbd: HTMLProps; keygen: HTMLProps; label: HTMLProps; legend: HTMLProps; li: HTMLProps; link: HTMLProps; main: HTMLProps; map: HTMLProps; mark: HTMLProps; menu: HTMLProps; menuitem: HTMLProps; meta: HTMLProps; meter: HTMLProps; nav: HTMLProps; noindex: HTMLProps; noscript: HTMLProps; object: HTMLProps; ol: HTMLProps; optgroup: HTMLProps; option: HTMLProps; output: HTMLProps; p: HTMLProps; param: HTMLProps; picture: HTMLProps; pre: HTMLProps; progress: HTMLProps; q: HTMLProps; rp: HTMLProps; rt: HTMLProps; ruby: HTMLProps; s: HTMLProps; samp: HTMLProps; script: HTMLProps; section: HTMLProps; select: HTMLProps; small: HTMLProps; source: HTMLProps; span: HTMLProps; strong: HTMLProps; style: HTMLProps; sub: HTMLProps; summary: HTMLProps; sup: HTMLProps; table: HTMLProps; tbody: HTMLProps; td: HTMLProps; textarea: HTMLProps; tfoot: HTMLProps; th: HTMLProps; thead: HTMLProps; time: HTMLProps; title: HTMLProps; tr: HTMLProps; track: HTMLProps; u: HTMLProps; ul: HTMLProps; var: HTMLProps; video: HTMLProps & SvelteVideoProps; wbr: HTMLProps; svg: SVGProps; animate: SVGProps; // @TODO: It is SVGAnimateElement but not in dom.d.ts for now. circle: SVGProps; clipPath: SVGProps; defs: SVGProps; desc: SVGProps; ellipse: SVGProps; feBlend: SVGProps; feColorMatrix: SVGProps; feComponentTransfer: SVGProps; feComposite: SVGProps; feConvolveMatrix: SVGProps; feDiffuseLighting: SVGProps; feDisplacementMap: SVGProps; feDistantLight: SVGProps; feFlood: SVGProps; feFuncA: SVGProps; feFuncB: SVGProps; feFuncG: SVGProps; feFuncR: SVGProps; feGaussianBlur: SVGProps; feImage: SVGProps; feMerge: SVGProps; feMergeNode: SVGProps; feMorphology: SVGProps; feOffset: SVGProps; fePointLight: SVGProps; feSpecularLighting: SVGProps; feSpotLight: SVGProps; feTile: SVGProps; feTurbulence: SVGProps; filter: SVGProps; foreignObject: SVGProps; g: SVGProps; image: SVGProps; line: SVGProps; linearGradient: SVGProps; marker: SVGProps; mask: SVGProps; metadata: SVGProps; path: SVGProps; pattern: SVGProps; polygon: SVGProps; polyline: SVGProps; radialGradient: SVGProps; rect: SVGProps; stop: SVGProps; switch: SVGProps; symbol: SVGProps; text: SVGProps; textPath: SVGProps; tspan: SVGProps; use: SVGProps; view: SVGProps; // Svelte specific sveltewindow: HTMLProps & SvelteWindowProps; sveltebody: HTMLProps; sveltefragment: { slot?: string; }; svelteoptions: { [name: string]: any }; sveltehead: { [name: string]: any }; [name: string]: { [name: string]: any }; } } /** * Adapted from jsx-dom * @see https://github.com/proteriax/jsx-dom/blob/be06937ba16908d87bf8aa4372a3583133e02b8a/index.d.ts * * which was adapted from * * Adapted from React’s TypeScript definition from DefinitelyTyped. * @see https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts */ declare namespace svelte.JSX { /* svelte specific */ interface ElementClass { $$prop_def: any; } interface ElementAttributesProperty { $$prop_def: any; // specify the property name to use } /* html jsx */ export type Child = Node | Node[] | string | number; export type Children = Child | Child[]; type NativeElement = HTMLElement; interface IntrinsicAttributes { slot?: string; } // TypeScript SVGElement has no `dataset` (Chrome 55+, Firefox 51+). type Element = NativeElement & { dataset: DOMStringMap; }; // // Event Handler Types // ---------------------------------------------------------------------- type EventHandler = (event: E & { currentTarget: EventTarget & T}) => any; type ClipboardEventHandler = EventHandler; type CompositionEventHandler = EventHandler; type DragEventHandler = EventHandler; type FocusEventHandler = EventHandler; type FormEventHandler = EventHandler; type ChangeEventHandler = EventHandler; type KeyboardEventHandler = EventHandler; type MouseEventHandler = EventHandler; type TouchEventHandler = EventHandler; type PointerEventHandler = EventHandler; type UIEventHandler = EventHandler; type WheelEventHandler = EventHandler; type AnimationEventHandler = EventHandler; type TransitionEventHandler = EventHandler; type MessageEventHandler = EventHandler; // See CSS 3 CSS-wide keywords https://www.w3.org/TR/css3-values/#common-keywords // See CSS 3 Explicit Defaulting https://www.w3.org/TR/css-cascade-3/#defaulting-keywords // "all CSS properties can accept these values" type CSSWideKeyword = 'initial' | 'inherit' | 'unset'; // See CSS 3 type https://drafts.csswg.org/css-values-3/#percentages type CSSPercentage = string; // See CSS 3 type https://drafts.csswg.org/css-values-3/#lengths type CSSLength = number | string; // This interface is not complete. Only properties accepting // unit-less numbers are listed here (see CSSProperty.js in React) interface DOMAttributes { // jsx-dom specific /* children?: Children; innerText?: string; namespaceURI?: string; ref?: ((e: T) => void) | Ref; */ // Clipboard Events oncopy?: ClipboardEventHandler | undefined | null; oncut?: ClipboardEventHandler | undefined | null; onpaste?: ClipboardEventHandler | undefined | null; // Composition Events oncompositionend?: CompositionEventHandler | undefined | null; oncompositionstart?: CompositionEventHandler | undefined | null; oncompositionupdate?: CompositionEventHandler | undefined | null; // Focus Events onfocus?: FocusEventHandler | undefined | null; onfocusin?: FocusEventHandler | undefined | null; onfocusout?: FocusEventHandler | undefined | null; onblur?: FocusEventHandler | undefined | null; // Form Events onchange?: FormEventHandler | undefined | null; oninput?: FormEventHandler | undefined | null; onreset?: FormEventHandler | undefined | null; onsubmit?: EventHandler | undefined | null; oninvalid?: EventHandler | undefined | null; onbeforeinput?: EventHandler | undefined | null; // Image Events onload?: EventHandler | undefined | null; onerror?: EventHandler | undefined | null; // also a Media Event // Detail Events ontoggle?: EventHandler | undefined | null; // Keyboard Events onkeydown?: KeyboardEventHandler | undefined | null; onkeypress?: KeyboardEventHandler | undefined | null; onkeyup?: KeyboardEventHandler | undefined | null; // Media Events onabort?: EventHandler | undefined | null; oncanplay?: EventHandler | undefined | null; oncanplaythrough?: EventHandler | undefined | null; oncuechange?: EventHandler | undefined | null; ondurationchange?: EventHandler | undefined | null; onemptied?: EventHandler | undefined | null; onencrypted?: EventHandler | undefined | null; onended?: EventHandler | undefined | null; onloadeddata?: EventHandler | undefined | null; onloadedmetadata?: EventHandler | undefined | null; onloadstart?: EventHandler | undefined | null; onpause?: EventHandler | undefined | null; onplay?: EventHandler | undefined | null; onplaying?: EventHandler | undefined | null; onprogress?: EventHandler | undefined | null; onratechange?: EventHandler | undefined | null; onseeked?: EventHandler | undefined | null; onseeking?: EventHandler | undefined | null; onstalled?: EventHandler | undefined | null; onsuspend?: EventHandler | undefined | null; ontimeupdate?: EventHandler | undefined | null; onvolumechange?: EventHandler | undefined | null; onwaiting?: EventHandler | undefined | null; // MouseEvents onauxclick?: MouseEventHandler | undefined | null; onclick?: MouseEventHandler | undefined | null; oncontextmenu?: MouseEventHandler | undefined | null; ondblclick?: MouseEventHandler | undefined | null; ondrag?: DragEventHandler | undefined | null; ondragend?: DragEventHandler | undefined | null; ondragenter?: DragEventHandler | undefined | null; ondragexit?: DragEventHandler | undefined | null; ondragleave?: DragEventHandler | undefined | null; ondragover?: DragEventHandler | undefined | null; ondragstart?: DragEventHandler | undefined | null; ondrop?: DragEventHandler | undefined | null; onmousedown?: MouseEventHandler | undefined | null; onmouseenter?: MouseEventHandler | undefined | null; onmouseleave?: MouseEventHandler | undefined | null; onmousemove?: MouseEventHandler | undefined | null; onmouseout?: MouseEventHandler | undefined | null; onmouseover?: MouseEventHandler | undefined | null; onmouseup?: MouseEventHandler | undefined | null; // Selection Events onselect?: EventHandler | undefined | null; onselectionchange?: EventHandler | undefined | null; onselectstart?: EventHandler | undefined | null; // Touch Events ontouchcancel?: TouchEventHandler | undefined | null; ontouchend?: TouchEventHandler | undefined | null; ontouchmove?: TouchEventHandler | undefined | null; ontouchstart?: TouchEventHandler | undefined | null; // Pointer Events ongotpointercapture?: PointerEventHandler | undefined | null; onpointercancel?: PointerEventHandler | undefined | null; onpointerdown?: PointerEventHandler | undefined | null; onpointerenter?: PointerEventHandler | undefined | null; onpointerleave?: PointerEventHandler | undefined | null; onpointermove?: PointerEventHandler | undefined | null; onpointerout?: PointerEventHandler | undefined | null; onpointerover?: PointerEventHandler | undefined | null; onpointerup?: PointerEventHandler | undefined | null; onlostpointercapture?: PointerEventHandler | undefined | null; // UI Events onscroll?: UIEventHandler | undefined | null; onresize?: UIEventHandler | undefined | null; // Wheel Events onwheel?: WheelEventHandler | undefined | null; // Animation Events onanimationstart?: AnimationEventHandler | undefined | null; onanimationend?: AnimationEventHandler | undefined | null; onanimationiteration?: AnimationEventHandler | undefined | null; // Transition Events ontransitionstart?: TransitionEventHandler | undefined | null; ontransitionrun?: TransitionEventHandler | undefined | null; ontransitionend?: TransitionEventHandler | undefined | null; ontransitioncancel?: TransitionEventHandler | undefined | null; // Svelte Transition Events onoutrostart?: EventHandler, T> | undefined | null; onoutroend?: EventHandler, T> | undefined | null; onintrostart?: EventHandler, T> | undefined | null; onintroend?: EventHandler, T> | undefined | null; // Message Events onmessage?: MessageEventHandler | undefined | null; onmessageerror?: MessageEventHandler | undefined | null; // Global Events oncancel?: EventHandler | undefined | null; onclose?: EventHandler | undefined | null; onfullscreenchange?: EventHandler | undefined | null; onfullscreenerror?: EventHandler | undefined | null; } // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/ interface AriaAttributes { /** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */ 'aria-activedescendant'?: string | undefined | null; /** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */ 'aria-atomic'?: boolean | 'false' | 'true' | undefined | null; /** * Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be * presented if they are made. */ 'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both' | undefined | null; /** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */ 'aria-busy'?: boolean | 'false' | 'true' | undefined | null; /** * Indicates the current "checked" state of checkboxes, radio buttons, and other widgets. * @see aria-pressed @see aria-selected. */ 'aria-checked'?: boolean | 'false' | 'mixed' | 'true' | undefined | null; /** * Defines the total number of columns in a table, grid, or treegrid. * @see aria-colindex. */ 'aria-colcount'?: number | undefined | null; /** * Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid. * @see aria-colcount @see aria-colspan. */ 'aria-colindex'?: number | undefined | null; /** * Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid. * @see aria-colindex @see aria-rowspan. */ 'aria-colspan'?: number | undefined | null; /** * Identifies the element (or elements) whose contents or presence are controlled by the current element. * @see aria-owns. */ 'aria-controls'?: string | undefined | null; /** Indicates the element that represents the current item within a container or set of related elements. */ 'aria-current'?: boolean | 'false' | 'true' | 'page' | 'step' | 'location' | 'date' | 'time' | undefined | null; /** * Identifies the element (or elements) that describes the object. * @see aria-labelledby */ 'aria-describedby'?: string | undefined | null; /** * Identifies the element that provides a detailed, extended description for the object. * @see aria-describedby. */ 'aria-details'?: string | undefined | null; /** * Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable. * @see aria-hidden @see aria-readonly. */ 'aria-disabled'?: boolean | 'false' | 'true' | undefined | null; /** * Indicates what functions can be performed when a dragged object is released on the drop target. * @deprecated in ARIA 1.1 */ 'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup' | undefined | null; /** * Identifies the element that provides an error message for the object. * @see aria-invalid @see aria-describedby. */ 'aria-errormessage'?: string | undefined | null; /** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */ 'aria-expanded'?: boolean | 'false' | 'true' | undefined | null; /** * Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, * allows assistive technology to override the general default of reading in document source order. */ 'aria-flowto'?: string | undefined | null; /** * Indicates an element's "grabbed" state in a drag-and-drop operation. * @deprecated in ARIA 1.1 */ 'aria-grabbed'?: boolean | 'false' | 'true' | undefined | null; /** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */ 'aria-haspopup'?: boolean | 'false' | 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | undefined | null; /** * Indicates whether the element is exposed to an accessibility API. * @see aria-disabled. */ 'aria-hidden'?: boolean | 'false' | 'true' | undefined | null; /** * Indicates the entered value does not conform to the format expected by the application. * @see aria-errormessage. */ 'aria-invalid'?: boolean | 'false' | 'true' | 'grammar' | 'spelling' | undefined | null; /** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */ 'aria-keyshortcuts'?: string | undefined | null; /** * Defines a string value that labels the current element. * @see aria-labelledby. */ 'aria-label'?: string | undefined | null; /** * Identifies the element (or elements) that labels the current element. * @see aria-describedby. */ 'aria-labelledby'?: string | undefined | null; /** Defines the hierarchical level of an element within a structure. */ 'aria-level'?: number | undefined | null; /** Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */ 'aria-live'?: 'off' | 'assertive' | 'polite' | undefined | null; /** Indicates whether an element is modal when displayed. */ 'aria-modal'?: boolean | 'false' | 'true' | undefined | null; /** Indicates whether a text box accepts multiple lines of input or only a single line. */ 'aria-multiline'?: boolean | 'false' | 'true' | undefined | null; /** Indicates that the user may select more than one item from the current selectable descendants. */ 'aria-multiselectable'?: boolean | 'false' | 'true' | undefined | null; /** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */ 'aria-orientation'?: 'horizontal' | 'vertical' | undefined | null; /** * Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship * between DOM elements where the DOM hierarchy cannot be used to represent the relationship. * @see aria-controls. */ 'aria-owns'?: string | undefined | null; /** * Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. * A hint could be a sample value or a brief description of the expected format. */ 'aria-placeholder'?: string | undefined | null; /** * Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM. * @see aria-setsize. */ 'aria-posinset'?: number | undefined | null; /** * Indicates the current "pressed" state of toggle buttons. * @see aria-checked @see aria-selected. */ 'aria-pressed'?: boolean | 'false' | 'mixed' | 'true' | undefined | null; /** * Indicates that the element is not editable, but is otherwise operable. * @see aria-disabled. */ 'aria-readonly'?: boolean | 'false' | 'true' | undefined | null; /** * Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified. * @see aria-atomic. */ 'aria-relevant'?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals' | undefined | null; /** Indicates that user input is required on the element before a form may be submitted. */ 'aria-required'?: boolean | 'false' | 'true' | undefined | null; /** Defines a human-readable, author-localized description for the role of an element. */ 'aria-roledescription'?: string | undefined | null; /** * Defines the total number of rows in a table, grid, or treegrid. * @see aria-rowindex. */ 'aria-rowcount'?: number | undefined | null; /** * Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid. * @see aria-rowcount @see aria-rowspan. */ 'aria-rowindex'?: number | undefined | null; /** * Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid. * @see aria-rowindex @see aria-colspan. */ 'aria-rowspan'?: number | undefined | null; /** * Indicates the current "selected" state of various widgets. * @see aria-checked @see aria-pressed. */ 'aria-selected'?: boolean | 'false' | 'true' | undefined | null; /** * Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM. * @see aria-posinset. */ 'aria-setsize'?: number | undefined | null; /** Indicates if items in a table or grid are sorted in ascending or descending order. */ 'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other' | undefined | null; /** Defines the maximum allowed value for a range widget. */ 'aria-valuemax'?: number | undefined | null; /** Defines the minimum allowed value for a range widget. */ 'aria-valuemin'?: number | undefined | null; /** * Defines the current value for a range widget. * @see aria-valuetext. */ 'aria-valuenow'?: number | undefined | null; /** Defines the human readable text alternative of aria-valuenow for a range widget. */ 'aria-valuetext'?: string | undefined | null; } interface HTMLAttributes extends AriaAttributes, DOMAttributes { // Standard HTML Attributes class?: string | undefined | null; dataset?: object | undefined | null; // eslint-disable-line accept?: string | undefined | null; acceptcharset?: string | undefined | null; accesskey?: string | undefined | null; action?: string | undefined | null; allow?: string | undefined | null; allowfullscreen?: boolean | undefined | null; allowtransparency?: boolean | undefined | null; allowpaymentrequest?: boolean | undefined | null; alt?: string | undefined | null; as?: string | undefined | null; async?: boolean | undefined | null; autocomplete?: string | undefined | null; autofocus?: boolean | undefined | null; autoplay?: boolean | undefined | null; capture?: 'environment' | 'user' | boolean | undefined | null; cellpadding?: number | string | undefined | null; cellspacing?: number | string | undefined | null; charset?: string | undefined | null; challenge?: string | undefined | null; checked?: boolean | undefined | null; cite?: string | undefined | null; classid?: string | undefined | null; cols?: number | undefined | null; colspan?: number | undefined | null; content?: string | undefined | null; contenteditable?: 'true' | 'false' | boolean | undefined | null; // Doesn't work when used as HTML attribute /** * Elements with the contenteditable attribute support innerHTML and textContent bindings. */ innerHTML?: string | undefined | null; // Doesn't work when used as HTML attribute /** * Elements with the contenteditable attribute support innerHTML and textContent bindings. */ textContent?: string | undefined | null; contextmenu?: string | undefined | null; controls?: boolean | undefined | null; coords?: string | undefined | null; crossorigin?: string | undefined | null; currenttime?: number | undefined | null; decoding?: 'async' | 'sync' | 'auto' | undefined | null; data?: string | undefined | null; datetime?: string | undefined | null; default?: boolean | undefined | null; defaultmuted?: boolean | undefined | null; defaultplaybackrate?: number | undefined | null; defer?: boolean | undefined | null; dir?: string | undefined | null; dirname?: string | undefined | null; disabled?: boolean | undefined | null; download?: any | undefined | null; draggable?: boolean | 'true' | 'false' | undefined | null; enctype?: string | undefined | null; enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined | null; for?: string | undefined | null; form?: string | undefined | null; formaction?: string | undefined | null; formenctype?: string | undefined | null; formmethod?: string | undefined | null; formnovalidate?: boolean | undefined | null; formtarget?: string | undefined | null; frameborder?: number | string | undefined | null; headers?: string | undefined | null; height?: number | string | undefined | null; hidden?: boolean | undefined | null; high?: number | undefined | null; href?: string | undefined | null; hreflang?: string | undefined | null; htmlfor?: string | undefined | null; httpequiv?: string | undefined | null; id?: string | undefined | null; inputmode?: string | undefined | null; integrity?: string | undefined | null; is?: string | undefined | null; ismap?: boolean | undefined | null; keyparams?: string | undefined | null; keytype?: string | undefined | null; kind?: string | undefined | null; label?: string | undefined | null; lang?: string | undefined | null; list?: string | undefined | null; loading?: string | undefined | null; loop?: boolean | undefined | null; low?: number | undefined | null; manifest?: string | undefined | null; marginheight?: number | undefined | null; marginwidth?: number | undefined | null; max?: number | string | undefined | null; maxlength?: number | undefined | null; media?: string | undefined | null; mediagroup?: string | undefined | null; method?: string | undefined | null; min?: number | string | undefined | null; minlength?: number | undefined | null; multiple?: boolean | undefined | null; muted?: boolean | undefined | null; name?: string | undefined | null; nonce?: string | undefined | null; novalidate?: boolean | undefined | null; open?: boolean | undefined | null; optimum?: number | undefined | null; part?: string | undefined | null; pattern?: string | undefined | null; placeholder?: string | undefined | null; playsinline?: boolean | undefined | null; ping?: string | undefined | null; poster?: string | undefined | null; preload?: string | undefined | null; radiogroup?: string | undefined | null; readonly?: boolean | undefined | null; referrerpolicy?: string | undefined | null; rel?: string | undefined | null; required?: boolean | undefined | null; reversed?: boolean | undefined | null; role?: string | undefined | null; rows?: number | undefined | null; rowspan?: number | undefined | null; sandbox?: string | undefined | null; scope?: string | undefined | null; scoped?: boolean | undefined | null; scrolling?: string | undefined | null; seamless?: boolean | undefined | null; selected?: boolean | undefined | null; shape?: string | undefined | null; size?: number | undefined | null; sizes?: string | undefined | null; slot?: string | undefined | null; span?: number | undefined | null; spellcheck?: boolean | 'true' | 'false' | undefined | null; src?: string | undefined | null; srcdoc?: string | undefined | null; srclang?: string | undefined | null; srcset?: string | undefined | null; start?: number | undefined | null; step?: number | string | undefined | null; style?: string | undefined | null; summary?: string | undefined | null; tabindex?: number | undefined | null; target?: string | undefined | null; title?: string | undefined | null; translate?: "yes" | "no" | "" | undefined | null; type?: string | undefined | null; usemap?: string | undefined | null; value?: any | undefined | null; /** * a value between 0 and 1 */ volume?: number | undefined | null; width?: number | string | undefined | null; wmode?: string | undefined | null; wrap?: string | undefined | null; // RDFa Attributes about?: string | undefined | null; datatype?: string | undefined | null; inlist?: any | undefined | null; prefix?: string | undefined | null; property?: string | undefined | null; resource?: string | undefined | null; typeof?: string | undefined | null; vocab?: string | undefined | null; // Non-standard Attributes autocapitalize?: string | undefined | null; autocorrect?: string | undefined | null; autosave?: string | undefined | null; color?: string | undefined | null; controlslist?: 'nodownload' | 'nofullscreen' | 'noplaybackrate' | 'noremoteplayback'; itemprop?: string | undefined | null; itemscope?: boolean | undefined | null; itemtype?: string | undefined | null; itemid?: string | undefined | null; itemref?: string | undefined | null; results?: number | undefined | null; security?: string | undefined | null; unselectable?: boolean | undefined | null; } // this list is "complete" in that it contains every SVG attribute // that React supports, but the types can be improved. // Full list here: https://facebook.github.io/react/docs/dom-elements.html // // The three broad type categories are (in order of restrictiveness): // - "number | string" // - "string" // - union of string literals interface SVGAttributes extends AriaAttributes, DOMAttributes { // Attributes which also defined in HTMLAttributes className?: string | undefined | null; class?: string | undefined | null; color?: string | undefined | null; height?: number | string | undefined | null; id?: string | undefined | null; lang?: string | undefined | null; max?: number | string | undefined | null; media?: string | undefined | null; method?: string | undefined | null; min?: number | string | undefined | null; name?: string | undefined | null; style?: string | undefined | null; target?: string | undefined | null; type?: string | undefined | null; width?: number | string | undefined | null; // Other HTML properties supported by SVG elements in browsers role?: string | undefined | null; tabindex?: number | undefined | null; crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined | null; // SVG Specific attributes 'accent-height'?: number | string | undefined | null; accumulate?: 'none' | 'sum' | undefined | null; additive?: 'replace' | 'sum' | undefined | null; 'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit' | undefined | null; allowReorder?: 'no' | 'yes' | undefined | null; alphabetic?: number | string | undefined | null; amplitude?: number | string | undefined | null; 'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated' | undefined | null; ascent?: number | string | undefined | null; attributeName?: string | undefined | null; attributeType?: string | undefined | null; autoReverse?: number | string | undefined | null; azimuth?: number | string | undefined | null; baseFrequency?: number | string | undefined | null; 'baseline-shift'?: number | string | undefined | null; baseProfile?: number | string | undefined | null; bbox?: number | string | undefined | null; begin?: number | string | undefined | null; bias?: number | string | undefined | null; by?: number | string | undefined | null; calcMode?: number | string | undefined | null; 'cap-height'?: number | string | undefined | null; clip?: number | string | undefined | null; 'clip-path'?: string | undefined | null; clipPathUnits?: number | string | undefined | null; 'clip-rule'?: number | string | undefined | null; 'color-interpolation'?: number | string | undefined | null; 'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit' | undefined | null; 'color-profile'?: number | string | undefined | null; 'color-rendering'?: number | string | undefined | null; contentScriptType?: number | string | undefined | null; contentStyleType?: number | string | undefined | null; cursor?: number | string | undefined | null; cx?: number | string | undefined | null; cy?: number | string | undefined | null; d?: string | undefined | null; decelerate?: number | string | undefined | null; descent?: number | string | undefined | null; diffuseConstant?: number | string | undefined | null; direction?: number | string | undefined | null; display?: number | string | undefined | null; divisor?: number | string | undefined | null; 'dominant-baseline'?: number | string | undefined | null; dur?: number | string | undefined | null; dx?: number | string | undefined | null; dy?: number | string | undefined | null; edgeMode?: number | string | undefined | null; elevation?: number | string | undefined | null; 'enable-background'?: number | string | undefined | null; end?: number | string | undefined | null; exponent?: number | string | undefined | null; externalResourcesRequired?: number | string | undefined | null; fill?: string | undefined | null; 'fill-opacity'?: number | string | undefined | null; 'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit' | undefined | null; filter?: string | undefined | null; filterRes?: number | string | undefined | null; filterUnits?: number | string | undefined | null; 'flood-color'?: number | string | undefined | null; 'flood-opacity'?: number | string | undefined | null; focusable?: number | string | undefined | null; 'font-family'?: string | undefined | null; 'font-size'?: number | string | undefined | null; 'font-size-adjust'?: number | string | undefined | null; 'font-stretch'?: number | string | undefined | null; 'font-style'?: number | string | undefined | null; 'font-variant'?: number | string | undefined | null; 'font-weight'?: number | string | undefined | null; format?: number | string | undefined | null; from?: number | string | undefined | null; fx?: number | string | undefined | null; fy?: number | string | undefined | null; g1?: number | string | undefined | null; g2?: number | string | undefined | null; 'glyph-name'?: number | string | undefined | null; 'glyph-orientation-horizontal'?: number | string | undefined | null; 'glyph-orientation-vertical'?: number | string | undefined | null; glyphRef?: number | string | undefined | null; gradientTransform?: string | undefined | null; gradientUnits?: string | undefined | null; hanging?: number | string | undefined | null; href?: string | undefined | null; 'horiz-adv-x'?: number | string | undefined | null; 'horiz-origin-x'?: number | string | undefined | null; ideographic?: number | string | undefined | null; 'image-rendering'?: number | string | undefined | null; in2?: number | string | undefined | null; in?: string | undefined | null; intercept?: number | string | undefined | null; k1?: number | string | undefined | null; k2?: number | string | undefined | null; k3?: number | string | undefined | null; k4?: number | string | undefined | null; k?: number | string | undefined | null; kernelMatrix?: number | string | undefined | null; kernelUnitLength?: number | string | undefined | null; kerning?: number | string | undefined | null; keyPoints?: number | string | undefined | null; keySplines?: number | string | undefined | null; keyTimes?: number | string | undefined | null; lengthAdjust?: number | string | undefined | null; 'letter-spacing'?: number | string | undefined | null; 'lighting-color'?: number | string | undefined | null; limitingConeAngle?: number | string | undefined | null; local?: number | string | undefined | null; 'marker-end'?: string | undefined | null; markerHeight?: number | string | undefined | null; 'marker-mid'?: string | undefined | null; 'marker-start'?: string | undefined | null; markerUnits?: number | string | undefined | null; markerWidth?: number | string | undefined | null; mask?: string | undefined | null; maskContentUnits?: number | string | undefined | null; maskUnits?: number | string | undefined | null; mathematical?: number | string | undefined | null; mode?: number | string | undefined | null; numOctaves?: number | string | undefined | null; offset?: number | string | undefined | null; opacity?: number | string | undefined | null; operator?: number | string | undefined | null; order?: number | string | undefined | null; orient?: number | string | undefined | null; orientation?: number | string | undefined | null; origin?: number | string | undefined | null; overflow?: number | string | undefined | null; 'overline-position'?: number | string | undefined | null; 'overline-thickness'?: number | string | undefined | null; 'paint-order'?: number | string | undefined | null; 'panose-1'?: number | string | undefined | null; path?: string | undefined | null; pathLength?: number | string | undefined | null; patternContentUnits?: string | undefined | null; patternTransform?: number | string | undefined | null; patternUnits?: string | undefined | null; 'pointer-events'?: number | string | undefined | null; points?: string | undefined | null; pointsAtX?: number | string | undefined | null; pointsAtY?: number | string | undefined | null; pointsAtZ?: number | string | undefined | null; preserveAlpha?: number | string | undefined | null; preserveAspectRatio?: string | undefined | null; primitiveUnits?: number | string | undefined | null; r?: number | string | undefined | null; radius?: number | string | undefined | null; refX?: number | string | undefined | null; refY?: number | string | undefined | null; 'rendering-intent'?: number | string | undefined | null; repeatCount?: number | string | undefined | null; repeatDur?: number | string | undefined | null; requiredExtensions?: number | string | undefined | null; requiredFeatures?: number | string | undefined | null; restart?: number | string | undefined | null; result?: string | undefined | null; rotate?: number | string | undefined | null; rx?: number | string | undefined | null; ry?: number | string | undefined | null; scale?: number | string | undefined | null; seed?: number | string | undefined | null; 'shape-rendering'?: number | string | undefined | null; slope?: number | string | undefined | null; spacing?: number | string | undefined | null; specularConstant?: number | string | undefined | null; specularExponent?: number | string | undefined | null; speed?: number | string | undefined | null; spreadMethod?: string | undefined | null; startOffset?: number | string | undefined | null; stdDeviation?: number | string | undefined | null; stemh?: number | string | undefined | null; stemv?: number | string | undefined | null; stitchTiles?: number | string | undefined | null; 'stop-color'?: string | undefined | null; 'stop-opacity'?: number | string | undefined | null; 'strikethrough-position'?: number | string | undefined | null; 'strikethrough-thickness'?: number | string | undefined | null; string?: number | string | undefined | null; stroke?: string | undefined | null; 'stroke-dasharray'?: string | number | undefined | null; 'stroke-dashoffset'?: string | number | undefined | null; 'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit' | undefined | null; 'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit' | undefined | null; 'stroke-miterlimit'?: string | undefined | null; 'stroke-opacity'?: number | string | undefined | null; 'stroke-width'?: number | string | undefined | null; surfaceScale?: number | string | undefined | null; systemLanguage?: number | string | undefined | null; tableValues?: number | string | undefined | null; targetX?: number | string | undefined | null; targetY?: number | string | undefined | null; 'text-anchor'?: string | undefined | null; 'text-decoration'?: number | string | undefined | null; textLength?: number | string | undefined | null; 'text-rendering'?: number | string | undefined | null; to?: number | string | undefined | null; transform?: string | undefined | null; u1?: number | string | undefined | null; u2?: number | string | undefined | null; 'underline-position'?: number | string | undefined | null; 'underline-thickness'?: number | string | undefined | null; unicode?: number | string | undefined | null; 'unicode-bidi'?: number | string | undefined | null; 'unicode-range'?: number | string | undefined | null; 'units-per-em'?: number | string | undefined | null; 'v-alphabetic'?: number | string | undefined | null; values?: string | undefined | null; 'vector-effect'?: number | string | undefined | null; version?: string | undefined | null; 'vert-adv-y'?: number | string | undefined | null; 'vert-origin-x'?: number | string | undefined | null; 'vert-origin-y'?: number | string | undefined | null; 'v-hanging'?: number | string | undefined | null; 'v-ideographic'?: number | string | undefined | null; viewBox?: string | undefined | null; viewTarget?: number | string | undefined | null; visibility?: number | string | undefined | null; 'v-mathematical'?: number | string | undefined | null; widths?: number | string | undefined | null; 'word-spacing'?: number | string | undefined | null; 'writing-mode'?: number | string | undefined | null; x1?: number | string | undefined | null; x2?: number | string | undefined | null; x?: number | string | undefined | null; xChannelSelector?: string | undefined | null; 'x-height'?: number | string | undefined | null; xlinkActuate?: string | undefined | null; xlinkArcrole?: string | undefined | null; xlinkHref?: string | undefined | null; xlinkRole?: string | undefined | null; xlinkShow?: string | undefined | null; xlinkTitle?: string | undefined | null; xlinkType?: string | undefined | null; xmlBase?: string | undefined | null; xmlLang?: string | undefined | null; xmlns?: string | undefined | null; xmlnsXlink?: string | undefined | null; xmlSpace?: string | undefined | null; y1?: number | string | undefined | null; y2?: number | string | undefined | null; y?: number | string | undefined | null; yChannelSelector?: string | undefined | null; z?: number | string | undefined | null; zoomAndPan?: string | undefined | null; } // eslint-disable-next-line @typescript-eslint/no-empty-interface interface HTMLProps extends HTMLAttributes {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface SVGProps extends SVGAttributes {} interface SvelteInputProps extends HTMLProps { group?: any | undefined | null; files?: FileList | undefined | null; indeterminate?: boolean | undefined | null; } interface SvelteWindowProps { readonly innerWidth?: Window['innerWidth'] | undefined | null; readonly innerHeight?: Window['innerHeight'] | undefined | null; readonly outerWidth?: Window['outerWidth'] | undefined | null; readonly outerHeight?: Window['outerHeight'] | undefined | null; scrollX?: Window['scrollX'] | undefined | null; scrollY?: Window['scrollY'] | undefined | null; readonly online?: Window['navigator']['onLine'] | undefined | null; // Transformed from on:sveltekit:xy 'onsveltekit:start'?: EventHandler | undefined | null; 'onsveltekit:navigation-start'?: EventHandler | undefined | null; 'onsveltekit:navigation-end'?: EventHandler | undefined | null; ondevicelight?: EventHandler | undefined | null; onbeforeinstallprompt?: EventHandler | undefined | null; ondeviceproximity?: EventHandler | undefined | null; onpaint?: EventHandler | undefined | null; onuserproximity?: EventHandler | undefined | null; onbeforeprint?: EventHandler | undefined | null; onafterprint?: EventHandler | undefined | null; onlanguagechange?: EventHandler | undefined | null; onorientationchange?: EventHandler | undefined | null; onmessage?: EventHandler | undefined | null; onmessageerror?: EventHandler | undefined | null; onoffline?: EventHandler | undefined | null; ononline?: EventHandler | undefined | null; onbeforeunload?: EventHandler | undefined | null; onunload?: EventHandler | undefined | null; onstorage?: EventHandler | undefined | null; onhashchange?: EventHandler | undefined | null; onpagehide?: EventHandler | undefined | null; onpageshow?: EventHandler | undefined | null; onpopstate?: EventHandler | undefined | null; ondevicemotion?: EventHandler | undefined | null; ondeviceorientation?: EventHandler | undefined | null; ondeviceorientationabsolute?: EventHandler | undefined | null; onunhandledrejection?: EventHandler | undefined | null; onrejectionhandled?: EventHandler | undefined | null; } interface SapperAnchorProps { // transformed from sapper:noscroll so it should be camel case sapperNoscroll?: true | undefined | null; sapperPrefetch?: true | undefined | null; } interface SvelteKitAnchorProps { // transformed from sveltekit:noscroll so it should be camel case sveltekitNoscroll?: true | undefined | null; sveltekitPrefetch?: true | undefined | null; sveltekitReload?: true | undefined | null; } interface SvelteMediaTimeRange { start: number; end: number; } interface SvelteMediaProps { readonly duration?: number | undefined | null; readonly buffered?: SvelteMediaTimeRange[] | undefined | null; readonly played?: SvelteMediaTimeRange[] | undefined | null; readonly seekable?: SvelteMediaTimeRange[] | undefined | null; readonly seeking?: boolean | undefined | null; readonly ended?: boolean | undefined | null; /** * the current playback time in the video, in seconds */ currentTime?: number | undefined | null; /** * the current playback time in the video, in seconds */ currenttime?: number | undefined | null; // Doesn't work when used as HTML Attribute /** * how fast or slow to play the video, where 1 is 'normal' */ playbackRate?: number | undefined | null; paused?: boolean | undefined | null; } interface SvelteVideoProps extends SvelteMediaProps { // Binding only, don't need lowercase variant readonly videoWidth?: number | undefined | null; readonly videoHeight?: number | undefined | null; } interface IntrinsicElements { // HTML a: HTMLProps & SapperAnchorProps & SvelteKitAnchorProps; abbr: HTMLProps; address: HTMLProps; area: HTMLProps; article: HTMLProps; aside: HTMLProps; audio: HTMLProps & SvelteMediaProps; b: HTMLProps; base: HTMLProps; bdi: HTMLProps; bdo: HTMLProps; big: HTMLProps; blockquote: HTMLProps; body: HTMLProps; br: HTMLProps; button: HTMLProps; canvas: HTMLProps; caption: HTMLProps; cite: HTMLProps; code: HTMLProps; col: HTMLProps; colgroup: HTMLProps; data: HTMLProps; datalist: HTMLProps; dd: HTMLProps; del: HTMLProps; details: HTMLProps; dfn: HTMLProps; dialog: HTMLProps; div: HTMLProps; dl: HTMLProps; dt: HTMLProps; em: HTMLProps; embed: HTMLProps; fieldset: HTMLProps; figcaption: HTMLProps; figure: HTMLProps; footer: HTMLProps; form: HTMLProps; h1: HTMLProps; h2: HTMLProps; h3: HTMLProps; h4: HTMLProps; h5: HTMLProps; h6: HTMLProps; head: HTMLProps; header: HTMLProps; hgroup: HTMLProps; hr: HTMLProps; html: HTMLProps; i: HTMLProps; iframe: HTMLProps; img: HTMLProps; input: SvelteInputProps; ins: HTMLProps; kbd: HTMLProps; keygen: HTMLProps; label: HTMLProps; legend: HTMLProps; li: HTMLProps; link: HTMLProps; main: HTMLProps; map: HTMLProps; mark: HTMLProps; menu: HTMLProps; menuitem: HTMLProps; meta: HTMLProps; meter: HTMLProps; nav: HTMLProps; noindex: HTMLProps; noscript: HTMLProps; object: HTMLProps; ol: HTMLProps; optgroup: HTMLProps; option: HTMLProps; output: HTMLProps; p: HTMLProps; param: HTMLProps; picture: HTMLProps; pre: HTMLProps; progress: HTMLProps; q: HTMLProps; rp: HTMLProps; rt: HTMLProps; ruby: HTMLProps; s: HTMLProps; samp: HTMLProps; script: HTMLProps; section: HTMLProps; select: HTMLProps; small: HTMLProps; source: HTMLProps; span: HTMLProps; strong: HTMLProps; style: HTMLProps; sub: HTMLProps; summary: HTMLProps; sup: HTMLProps; table: HTMLProps; tbody: HTMLProps; td: HTMLProps; textarea: HTMLProps; tfoot: HTMLProps; th: HTMLProps; thead: HTMLProps; time: HTMLProps; title: HTMLProps; tr: HTMLProps; track: HTMLProps; u: HTMLProps; ul: HTMLProps; var: HTMLProps; video: HTMLProps & SvelteVideoProps; wbr: HTMLProps; svg: SVGProps; animate: SVGProps; // @TODO: It is SVGAnimateElement but not in dom.d.ts for now. circle: SVGProps; clipPath: SVGProps; defs: SVGProps; desc: SVGProps; ellipse: SVGProps; feBlend: SVGProps; feColorMatrix: SVGProps; feComponentTransfer: SVGProps; feComposite: SVGProps; feConvolveMatrix: SVGProps; feDiffuseLighting: SVGProps; feDisplacementMap: SVGProps; feDistantLight: SVGProps; feFlood: SVGProps; feFuncA: SVGProps; feFuncB: SVGProps; feFuncG: SVGProps; feFuncR: SVGProps; feGaussianBlur: SVGProps; feImage: SVGProps; feMerge: SVGProps; feMergeNode: SVGProps; feMorphology: SVGProps; feOffset: SVGProps; fePointLight: SVGProps; feSpecularLighting: SVGProps; feSpotLight: SVGProps; feTile: SVGProps; feTurbulence: SVGProps; filter: SVGProps; foreignObject: SVGProps; g: SVGProps; image: SVGProps; line: SVGProps; linearGradient: SVGProps; marker: SVGProps; mask: SVGProps; metadata: SVGProps; path: SVGProps; pattern: SVGProps; polygon: SVGProps; polyline: SVGProps; radialGradient: SVGProps; rect: SVGProps; stop: SVGProps; switch: SVGProps; symbol: SVGProps; text: SVGProps; textPath: SVGProps; tspan: SVGProps; use: SVGProps; view: SVGProps; // Svelte specific sveltewindow: HTMLProps & SvelteWindowProps; sveltebody: HTMLProps; sveltefragment: { slot?: string; }; svelteoptions: { [name: string]: any }; sveltehead: { [name: string]: any }; svelteelement: { 'this': string | undefined | null; } & HTMLProps & SVGProps; [name: string]: { [name: string]: any }; } }