mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-11 11:51:19 +00:00
394abe7cf8
The `msg` argument is optional. Signed-off-by: David Mehren <dmehren1@gmail.com>
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import { User } from './models'
|
|
|
|
|
|
declare module 'express' {
|
|
export interface Request {
|
|
user?: User;
|
|
flash (type: string, msg?: string): any;
|
|
}
|
|
}
|