Type alias FeaturedListParams

FeaturedListParams: {
    filter?: Partial<Pick<Featured, "type" | "memberId" | "gameId" | "gameTitle" | "isApproved" | "isVisible" | "isSticky"> & {
        from?: Date;
        to?: Date;
    }>;
    sort?: { [ key in keyof Partial<Pick<Featured, "date">>]: Sort };
    limit?: number;
}

Type declaration

  • Optional filter?: Partial<Pick<Featured, "type" | "memberId" | "gameId" | "gameTitle" | "isApproved" | "isVisible" | "isSticky"> & {
        from?: Date;
        to?: Date;
    }>
  • Optional sort?: { [ key in keyof Partial<Pick<Featured, "date">>]: Sort }
  • Optional limit?: number

Generated using TypeDoc