refactor: add field to type

This commit is contained in:
Methapon2001 2024-06-28 16:22:07 +07:00
parent 0e2cc3cb21
commit f753f8dec2

View file

@ -2,6 +2,7 @@ import type { Request } from "express";
export type RequestWithUser = Request & {
user: {
sub: string;
name: string;
given_name: string;
familiy_name: string;