UNPKG

@mintlify/models

Version:

Mintlify models

11 lines (10 loc) 266 B
import { UserType } from '../entities/userType.js'; export type UserMetadata = { isPaid: boolean; isOnTrial: boolean; shouldShowTrialBanner: boolean; isAdminUser: boolean; }; export type UserWithMetadata = UserType & { metadata: UserMetadata; };