UNPKG

@replyke/express

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

14 lines (13 loc) 320 B
import IProject from "./interfaces/IProject"; declare global { namespace Express { interface Request { userId: string; project: IProject; userRole: "admin" | "editor" | "visitor"; isMaster: boolean; isService: boolean; } } } export {};