mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-13 22:39:06 +02:00
20 lines
478 B
TypeScript
20 lines
478 B
TypeScript
import { KVNamespace } from '@cloudflare/workers-types';
|
|
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
interface Locals {
|
|
session: Session | null;
|
|
}
|
|
interface Platform {
|
|
env: {
|
|
GH_MEDIA: R2Bucket;
|
|
GH_SESSIONS: KVNamespace;
|
|
};
|
|
cf: CfProperties
|
|
ctx: ExecutionContext
|
|
}
|
|
}
|
|
}
|
|
|
|
export {}; |