mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
515 B
22 lines
515 B
import { Account, Order, Platform, Tag } from '@prisma/client';
|
|
|
|
export interface Export {
|
|
accounts: Omit<Account, 'createdAt' | 'updatedAt' | 'userId'>[];
|
|
activities: (Omit<
|
|
Order,
|
|
| 'accountUserId'
|
|
| 'createdAt'
|
|
| 'date'
|
|
| 'isDraft'
|
|
| 'symbolProfileId'
|
|
| 'updatedAt'
|
|
| 'userId'
|
|
> & { date: string; symbol: string })[];
|
|
meta: {
|
|
date: string;
|
|
version: string;
|
|
};
|
|
platforms: Platform[];
|
|
tags: Omit<Tag, 'userId'>[];
|
|
user: { settings: { currency: string } };
|
|
}
|
|
|