Files
continuwuity/packages/website/src/app.d.ts
T
2024-07-24 13:55:49 +01:00

18 lines
373 B
TypeScript

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
import type { Middleware } from "polka"
type Req = Parameters<Middleware>[0]
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface PageState {}
interface Platform {
req: Req
}
}
}
export {};