[READ-ONLY] Mirror of https://github.com/mrgnw/morganwill.com.
morganwill.com
585 B
22 lines
1// See https://kit.svelte.dev/docs/types#app
2// for information about these interfaces
3// and what to do when importing types
4declare namespace App {
5 // interface Error {}
6 // interface Locals {}
7 // interface PageData {}
8 // interface Platform {}
9}
10
11// TypeScript support for unplugin-icons
12declare module '~icons/*' {
13 import { SvelteComponent } from 'svelte';
14 const component: typeof SvelteComponent;
15 export default component;
16}
17
18declare module 'virtual:icons/*' {
19 import { SvelteComponent } from 'svelte';
20 const component: typeof SvelteComponent;
21 export default component;
22}