UNPKG

get-express-starter

Version:

Get production ready express boilerplate with a single command

9 lines (7 loc) 159 B
import type { Request } from 'express'; import type { IUser } from './index'; declare module 'express' { export interface Request { user?: IUser; } }