Reorganize helper lib (Move interfaces and types) * InfoItem * PortfolioItem * PortfolioOverview * PortfolioPerformance * Position * PortfolioPosition * PortfolioReport * PortfolioReportRule * User * UserSettings * DateRange * AdminData * AccessWithGranteeUser * OrderWithAccount * Granularity * UserWithSettings * RequestWithUser
7 lines
122 B
TypeScript
7 lines
122 B
TypeScript
import { Currency } from '@prisma/client';
|
|
|
|
export interface UserSettings {
|
|
baseCurrency: Currency;
|
|
locale: string;
|
|
}
|