mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-15 02:21:39 +00:00
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
|
/// <reference types="svelte" />
|
||
|
/// <reference types="vite/client" />
|
||
|
|
||
|
declare module "*svg?component" {
|
||
|
import { ComponentType, SvelteComponentTyped } from "svelte";
|
||
|
const icon: ComponentType<SvelteComponentTyped>;
|
||
|
export default icon;
|
||
|
}
|