Files
continuwuity/packages/website/src/app.d.ts
T
2024-09-15 18:07:41 +01:00

16 lines
361 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
}
}
}