Research-Stack/2-Search-Space/search/stract/frontend/src/app.d.ts

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 {};