12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
import type { User } from "lucia";
|
|
|
|
// https://vike.dev/pageContext#typescript
|
|
declare global {
|
|
namespace Vike {
|
|
interface PageContext {
|
|
auth: User;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|