Files
astro-oidc-rp/types/astro.locals.d.ts

9 lines
154 B
TypeScript

declare global {
namespace App {
interface Locals {
user?: { sub: string; email?: string; firstName?: string } | null;
}
}
}
export {};