import { IPerkConfig } from './IPerkConfig'; import { Level } from './Level'; export interface IUserPerk { id: number; userId: string; active: boolean; level: Level; config: IPerkConfig; }