UNPKG

@userfrosting/sprinkle-admin

Version:
14 lines (13 loc) 406 B
/** * 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; }