import { AccountWithExtraInfo } from './Account.type'; import { GroupType } from '../constants/lookups'; import { Rtbs } from '.'; export interface Group { id: number; title: string; type: GroupType; description: string; lastUpdated: string; identifierType: string; identifierBreakdown: string; accountIds: number[]; } export interface GroupWithExtraInfo extends Group, Rtbs { accounts: AccountWithExtraInfo[]; }