summaryrefslogtreecommitdiff
path: root/src/types/express.d.ts
blob: 7f9ceb5794d6598993b0db574a611f2f757a6015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
declare global {
  namespace Express {
    interface Request {
      user?: {
        id: number;
        type: "parent" | "child";
      };
    }
  }
}

export {};