/// // Add RequestValidation Interface on to Express's Request Interface. declare namespace Express {interface Request extends Flash {}} interface Flash { flash(type: string, message: any): void; id?:string; warning?:any; error?:any; appname?:string; appuser?:string; authtkn?:any; ipdata?:any; session?:any;} declare module "express-flash";