bw-hspc-contest-env/web/src/app.d.ts

15 lines
269 B
TypeScript
Raw Normal View History

2023-04-26 12:20:01 -04:00
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
2023-08-26 11:41:37 -04:00
interface Locals {
theme: 'light' | 'dark';
}
2023-04-26 12:20:01 -04:00
// interface PageData {}
// interface Platform {}
}
}
export {};