* Extend pricing page * Feature/align pricing page with subscription model (#135) * Align pricing page with subscription model * Update changelog
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
import { SubscriptionType } from '@ghostfolio/common/types/subscription.type';
|
|
import { Account, Settings, User } from '@prisma/client';
|
|
|
|
export type UserWithSettings = User & {
|
|
Account: Account[];
|
|
Settings: Settings;
|
|
subscription?: {
|
|
expiresAt?: Date;
|
|
type: SubscriptionType;
|
|
};
|
|
};
|