mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-09 17:45:47 +00:00
26 lines
573 B
TypeScript
26 lines
573 B
TypeScript
import 'unplugin-icons/types/svelte';
|
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
interface Locals {
|
|
form?: FormData;
|
|
}
|
|
interface PageData {
|
|
globals?: {
|
|
title?: string;
|
|
header?: {
|
|
/** Hide tne logo from the header */
|
|
hideLogo?: boolean;
|
|
/** Show the divider between the header and the content */
|
|
divider?: boolean;
|
|
};
|
|
};
|
|
}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export {};
|