Skip to content

Commit

Permalink
chore: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
atinux committed Feb 5, 2025
1 parent 4852cd7 commit 43d7d11
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/types/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface UserSession {
/**
* Session ID
*/
id: string
id?: string
/**
* User session data, available on client and server
*/
Expand All @@ -26,6 +26,7 @@ export interface UserSession {
}

export interface UserSessionRequired extends UserSession {
id: string
user: User
}

Expand Down

0 comments on commit 43d7d11

Please sign in to comment.