type定義修正

This commit is contained in:
ろむねこ 2024-06-18 12:06:33 +09:00
parent 0f0db3633c
commit 67c357beed
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -5,7 +5,11 @@ declare global {
interface Request {
user?: {
token: string;
claims: any;
claims: {
sub: string;
role: string;
home_group_id: string;
};
};
}
}