export type HlPortfolioSample = [number, string]; export type HlPortfolioWindow = { accountValueHistory: HlPortfolioSample[]; pnlHistory: HlPortfolioSample[]; vlm: string; }; export type HlPortfolioPeriod = 'day' | 'week' | 'month' | 'allTime' | 'perpDay' | 'perpWeek' | 'perpMonth' | 'perpAllTime'; export type HlPortfolio = [HlPortfolioPeriod, HlPortfolioWindow][]; //# sourceMappingURL=portfolio.d.ts.map