Anki/qt/launcher-gui/src/routes/svg.d.ts
2025-10-14 09:22:33 +08:00

13 lines
481 B
TypeScript

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
// TODO: this is purely to make svelte-check happy, as it complains about the icon components not being found otherwise
declare module "*.svg?component" {
import type { Component } from "svelte";
import type { SVGAttributes } from "svelte/elements";
const content: Component<SVGAttributes<SVGSVGElement>>;
export default content;
}