import { IconTypes, GuidValue } from "@omnia/fx-models"; interface Icon { type: IconTypes; class: string; } export interface Achievement { id: GuidValue; title: string; description: string; activityPoints: number; iconbadge: Icon; iconbadgeColor: string; iconbadgeBackgroundColor: string; publishingAppId: GuidValue; } export interface UserAchievement { topAchievement: Achievement; totalPoints: number; user: string; publishingAppId: GuidValue; } export {};