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.
 
 
 
 
 

19 lines
367 B

import { Account, Tag } from '@prisma/client';
import { UserSettings } from './user-settings.interface';
export interface User {
access: {
alias?: string;
id: string;
}[];
accounts: Account[];
id: string;
permissions: string[];
settings: UserSettings;
subscription: {
expiresAt?: Date;
type: 'Basic' | 'Premium';
};
tags: Tag[];
}