import { OverExposedType } from '../../constants/lookups'; import { GroupWithExtraInfo, OverExposedAccount, PortfolioWithExtraInfo } from '../../types'; export interface IGroupApi { getGroups(): Promise; getGroup(groupId: number): Promise; getPortfolio(groupId: number, combined?: boolean, symbol?: string): Promise; getOverExposedAccounts(groupId: number, threshold: number, type: OverExposedType): Promise; }