Skip to content

Commit ad0d0ca

Browse files
committed
narrow params type for getSession
1 parent d06fcfc commit ad0d0ca

File tree

1 file changed

+3
-4
lines changed
  • packages/auth-solid-start/src/server

1 file changed

+3
-4
lines changed

packages/auth-solid-start/src/server/index.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -739,13 +739,12 @@ export class SolidServerAuth extends SolidAuthHelpers {
739739

740740
getSession = ({
741741
event,
742-
tokenData,
742+
token,
743743
}: {
744744
event?: HTTPEvent;
745-
tokenData?: TokenData;
746-
} = {}) => {
745+
} & { token?: string } = {}) => {
747746
const authToken =
748-
tokenData?.auth_token ??
747+
token ??
749748
(event
750749
? getCookie(event, this.options.authCookieName)
751750
: getCookie(this.options.authCookieName)) ??

0 commit comments

Comments
 (0)