Skip to content

Commit

Permalink
fix: token type
Browse files Browse the repository at this point in the history
  • Loading branch information
aaa006bd committed Aug 18, 2023
1 parent 4af21d3 commit 119f54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/forges/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { H3Event } from 'h3';
import { User } from '../schemas';

export type Tokens = { accessToken: string; accessTokenExpiresIn: number; refreshToken?: string };
export type Tokens = { accessToken: string; accessTokenExpiresIn: number; refreshToken: string | null};

export type Credentials = {
username: string;
Expand Down

0 comments on commit 119f54f

Please sign in to comment.