@blue-impact-engine/blue-impact-engine-client
Version:
Blue Impact Engine API Client
15 lines • 446 B
TypeScript
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