mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 10:57:04 +00:00
19 lines
384 B
TypeScript
19 lines
384 B
TypeScript
import "@poppanator/sveltekit-svg/dist/svg"
|
|
import "vite-plugin-pwa/pwa-assets"
|
|
|
|
// 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 {}
|