@springtree/eva-core
Version:
The EVA core typings
25 lines (20 loc) • 543 B
TypeScript
declare module EVA.Authentication.Janrain {
/**
* This service can be used to request a password reset in Janrain
*/
export interface JanrainRequestPasswordResetToken {
EmailAddress: string;
}
export interface JanrainRequestPasswordResetTokenResponse {
Success: boolean;
AccountExists: boolean;
Error: EVA.Core.ServiceError;
}
/**
* This service can be used to handle password reset tokens from Janrain
*/
export interface JanrainResetPassword {
Token: string;
NewPassword: string;
}
}