mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-18 10:57:35 -05:00
6 lines
98 B
TypeScript
6 lines
98 B
TypeScript
|
import { Router } from 'express'
|
||
|
|
||
|
export interface AuthMiddleware {
|
||
|
getMiddleware (): Router;
|
||
|
}
|