Type alias GameCompletionListParams

GameCompletionListParams: {
    filter?: Partial<Pick<MemberGame, "memberId" | "gameId">> & {
        completed?: boolean;
    };
    sort?: { [ key in keyof Partial<Pick<MemberGame, "playTime" | "mostRecentAchievementDate" | "achievementsUnlocked">> | "completionPercentage"]?: Sort };
    limit?: number;
}

Type declaration

  • Optional filter?: Partial<Pick<MemberGame, "memberId" | "gameId">> & {
        completed?: boolean;
    }
  • Optional sort?: { [ key in keyof Partial<Pick<MemberGame, "playTime" | "mostRecentAchievementDate" | "achievementsUnlocked">> | "completionPercentage"]?: Sort }
  • Optional limit?: number

Generated using TypeDoc