indicator

This commit is contained in:
tglide
2023-12-20 20:22:25 +00:00
parent 7fe8f903b1
commit 538608b50c
5 changed files with 84 additions and 36 deletions

14
src/app.d.ts vendored
View File

@@ -1,12 +1,14 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
}
namespace App {
// interface Error {}
// interface Locals {}
interface PageData {
changelogEntries: number;
}
// interface Platform {}
}
}
export {};