mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
18 lines
373 B
TypeScript
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 {};
|