mirror of
https://github.com/status-im/codimd.git
synced 2025-01-28 01:55:58 +00:00
ba8b1f1fe2
- add typing for req.user.id - add typing annotate in response.ts and fix type error in errorPage/index.ts Signed-off-by: Raccoon <raccoon@hackmd.io>
6 lines
76 B
TypeScript
6 lines
76 B
TypeScript
declare namespace Express {
|
|
export interface User {
|
|
id?: string
|
|
}
|
|
}
|