From f63fde15868b7f9530889390723c37a023a67ddc Mon Sep 17 00:00:00 2001 From: Bjarne Mogstad Date: Thu, 14 May 2026 19:44:18 +0200 Subject: [PATCH] Use SVGSVGElement for Ember types Small typo in Ember client types, correct for other clients. --- plugin/client/ember.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/client/ember.d.ts b/plugin/client/ember.d.ts index 2737b5f..9771560 100644 --- a/plugin/client/ember.d.ts +++ b/plugin/client/ember.d.ts @@ -12,7 +12,7 @@ declare module '*.svg' { import type { ComponentLike } from '@glint/template'; const Component: ComponentLike<{ - Element: SVGElement; + Element: SVGSVGElement; Blocks: { default: []; }; @@ -24,7 +24,7 @@ declare module '*.svg?current-color' { import type { ComponentLike } from '@glint/template'; const Component: ComponentLike<{ - Element: SVGElement; + Element: SVGSVGElement; Blocks: { default: []; }; @@ -36,7 +36,7 @@ declare module '*.svg?skip-current-color' { import type { ComponentLike } from '@glint/template'; const Component: ComponentLike<{ - Element: SVGElement; + Element: SVGSVGElement; Blocks: { default: []; }; @@ -48,7 +48,7 @@ declare module '*.svg?unsafe-inline' { import type { ComponentLike } from '@glint/template'; const Component: ComponentLike<{ - Element: SVGElement; + Element: SVGSVGElement; Blocks: { default: []; };