UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

12 lines (11 loc) 412 B
import { IUser } from '../../user/models/iuser'; /** * A "small" version of the {@link UserResource} interface, that represents * User response in its compacted form without some of the attributes. * * This interface exists mostly to not give developers false hopes about contents of some backend responses. */ export interface UserResourceSmall extends IUser { fullName: string; avatar?: string; }