UNPKG

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

Version:
17 lines 570 B
import BaseEntity from "../BaseEntity"; import { ContentItem } from "../content"; import MultimediaEntity from "../media/Multimedia"; import { BaseUser } from "../users/User"; type Organisation = { name: string; summary: string; }; export type OrganisationDetails = { owner: BaseUser; logo?: MultimediaEntity; description?: ContentItem; }; type OrganisationEntity = BaseEntity & Organisation & OrganisationDetails; export type BaseOrganisation = BaseEntity & Organisation; export default OrganisationEntity; //# sourceMappingURL=Organisation.d.ts.map