18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
import '@poppanator/sveltekit-svg/dist/svg'
|
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
// interface Locals {}
|
|
// interface PageData {}
|
|
interface PageState {
|
|
modal?: string,
|
|
}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export {};
|