mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 04:22:07 +00:00
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
// interface Locals {}
|
|
interface PageData {
|
|
changelogEntries: number;
|
|
}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export {};
|