@userfrosting/sprinkle-account
Version:
Account Sprinkle for UserFrosting
14 lines (13 loc) • 395 B
TypeScript
/**
* API Interfaces - What the API expects and what it returns
*
* This interface is tied to the `ProfileEmailEditAction` API, accessed at the
* POST `/account/settings/email` endpoint.
*
* This api doesn't have a corresponding Response data interface.
* The General API Response interface is used.
*/
export interface EmailEditRequest {
email: string;
passwordcheck: string;
}