Skip to content

Commit

Permalink
Update astro.md (#1458)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkyerv authored Feb 25, 2024
1 parent 6d6ec5c commit 7708f36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/guides/validate-session-cookies/astro.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Make sure sure to type `App.Locals` as well.
/// <reference types="astro/client" />
declare namespace App {
interface Locals {
user: import("lucia").User;
session: import("lucia").Session;
user: import("lucia").User | null;
session: import("lucia").Session | null;
}
}
```
Expand Down

0 comments on commit 7708f36

Please sign in to comment.