diff options
Diffstat (limited to 'src/api/global.d.ts')
-rw-r--r-- | src/api/global.d.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/api/global.d.ts b/src/api/global.d.ts new file mode 100644 index 00000000..7751af8f --- /dev/null +++ b/src/api/global.d.ts @@ -0,0 +1,8 @@ +declare global { + namespace Express { + interface Request { + user_id: any; + token: any; + } + } +} |