mirror of
https://github.com/status-im/codimd.git
synced 2025-01-12 10:35:08 +00:00
0427b1ba74
Signed-off-by: Raccoon <raccoon@hackmd.io>
10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
declare namespace Express {
|
|
export interface User {
|
|
id?: string
|
|
}
|
|
|
|
export interface Request {
|
|
locals?: Record<string, string>
|
|
}
|
|
}
|