import { OrganisationUnitInterface } from "../../organisation_units/OrganisationUnitTypes"; import { UserInterface } from "../../user/UserTypes"; import { OrganisationUnitUserRoleInterface, OrganisationUnitUserRoles } from "../OrganisationUnitUserRoleTypes"; interface OrganisationUnit extends OrganisationUnitInterface { id: string; } interface User extends UserInterface { id: string; } export interface CreateOrganisationUnitUserRole extends OrganisationUnitUserRoleInterface { user: User; organisationUnit: OrganisationUnit; role: OrganisationUnitUserRoles; } export {};