refactor(backend): fix type

This commit is contained in:
syuilo 2022-01-26 18:48:44 +09:00
parent 620e8f4432
commit 76ec0fc095

View file

@ -10,7 +10,7 @@ export class AuthenticationError extends Error {
}
}
export default async (token: string): Promise<[User | null | undefined, App | null | undefined]> => {
export default async (token: string | null): Promise<[User | null | undefined, AccessToken | null | undefined]> => {
if (token == null) {
return [null, null];
}