UNPKG

@wennals/common

Version:

9 lines (8 loc) 245 B
import { NextFunction, Request, Response } from 'express'; export interface JWT { userid: string; isAdmin: string; iat: number; exp: number; } export declare const auth: (req: Request, res: Response, next: NextFunction) => void;