tcl-guessr/src/app.d.ts
2024-10-26 12:08:14 +02:00

17 lines
318 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 {}
// interface PageState {}
interface Platform {
env?: {
TCL_GUESSR_KV: KVNamespace;
};
}
}
}
export {};