Skip to content

Commit

Permalink
chore: remove lint-ignore line
Browse files Browse the repository at this point in the history
  • Loading branch information
Raju-kadel-27 committed Jul 6, 2024
1 parent 938026f commit 0316d13
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/server/api/pagination/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export type PaginationData = {
*/
export type ProxyFunctions = {
// biome-ignore lint/suspicious/noExplicitAny: <any is legal here>
findMany: (params: any, pagination: PaginationData) => Promise<any>;
// biome-ignore lint/suspicious/noExplicitAny: <any is legal here>
count: (params: any) => Promise<number>;
findMany: (params: unknown, pagination: PaginationData) => Promise<any>;
count: (params: unknown) => Promise<number>;
};

0 comments on commit 0316d13

Please sign in to comment.