@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
12 lines (11 loc) • 348 B
TypeScript
import { Request } from 'express';
import { InternalIdentity } from '../../Contracts/InternalDataModels/Identity';
/**
* Extends the base HttpRequest object to include a users identity.
*/
export interface IHttpRequestWithIdentity extends Request {
/**
* Contains the requesting users identity.
*/
identity: InternalIdentity;
}