mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||
|
*
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
import { User} from '../../src/users/user.entity';
|
||
|
|
||
|
declare module 'express' {
|
||
|
export interface Request {
|
||
|
user?: User;
|
||
|
}
|
||
|
}
|