import { OrganizationType } from './OrganizationType'; import { UserType } from './UserType'; export type RoleObjectType = { id: number; user: UserType; organization: OrganizationType; isDriver: boolean; isOperator: boolean; };