@userfrosting/sprinkle-admin
Version:
Admin Sprinkle for UserFrosting 6
14 lines (13 loc) • 404 B
text/typescript
/**
* API Interfaces - What the API expects and what it returns
*
* This interface is tied to the `UserUpdateFieldAction` API, accessed at the
* GET `/api/users/u/{user_name}/password` endpoint.
*
* This api doesn't have a corresponding Response data interface. `ApiResponse`
* is used as response interface.
*/
export interface UserPasswordRequest {
password: string
passwordc: string
}