UNPKG

@userfrosting/sprinkle-account

Version:
11 lines (10 loc) 397 B
import { UserInterface, UserPermissionsMapInterface } from './'; /** * Special user interface that includes permissions and master status. * This interface is used by the auth store to store the current user with extra * information needed for authorization. */ export interface UserDataInterface extends UserInterface { permissions: UserPermissionsMapInterface; is_master: boolean; }