2021-06-02 20:15:53 +02:00
|
|
|
import { SubscriptionType } from '@ghostfolio/common/types/subscription.type';
|
2021-04-25 21:22:35 +02:00
|
|
|
import { Account, Settings, User } from '@prisma/client';
|
2021-04-13 21:53:58 +02:00
|
|
|
|
2021-04-25 21:22:35 +02:00
|
|
|
export type UserWithSettings = User & {
|
|
|
|
Account: Account[];
|
|
|
|
Settings: Settings;
|
2021-06-02 20:15:53 +02:00
|
|
|
subscription?: {
|
|
|
|
expiresAt?: Date;
|
|
|
|
type: SubscriptionType;
|
|
|
|
};
|
2021-04-25 21:22:35 +02:00
|
|
|
};
|