@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
11 lines (10 loc) • 419 B
TypeScript
import { InternalIdentity as Identity } from '../../Contracts/index';
import { GetIdentityParams, IdentityService } from './IdentityService';
/**
* Used for integrationtests only.
*/
export declare class IdentityServiceMock extends IdentityService {
initialize(jsonWebToken?: any, mock?: boolean): void;
getIdentity(params: GetIdentityParams): Promise<Identity>;
protected decodeToken(token: any): any;
}