UNPKG

@blue-impact-engine/blue-impact-engine-client

Version:
15 lines 446 B
import BaseEntity from "../BaseEntity"; import { BaseOrganisation } from "../organisations/Organisation"; import { UserRole } from "./UserRole"; type User = { email: string; full_name: string; role: UserRole; }; export type UserDetails = { organisation?: BaseOrganisation; }; type UserEntity = BaseEntity & User & UserDetails; export type BaseUser = BaseEntity & User; export default UserEntity; //# sourceMappingURL=User.d.ts.map