20 lines
396 B
TypeScript
20 lines
396 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
|
|
import type { Guard } from '$lib/server/guard';
|
|
import 'unplugin-icons/types/svelte';
|
|
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
interface Locals {
|
|
guard: Guard;
|
|
}
|
|
// interface PageData {}
|
|
// interface PageState {}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export {};
|