@userfrosting/sprinkle-admin
Version:
Admin Sprinkle for UserFrosting 6
14 lines (13 loc) • 454 B
TypeScript
import { UserInterface, GroupInterface } from '@userfrosting/sprinkle-account/interfaces';
/**
* API Interfaces - What the API expects and what it returns
*
* This interface is tied to the `UserApi` API, accessed at the
* GET `/api/users/u/{user_name}` endpoint.
*
* This api doesn't have a corresponding Request data interface.
*/
export interface UserResponse extends UserInterface {
locale_name: string;
group: GroupInterface | null;
}