chore: fix typing

This commit is contained in:
Ahmed Bouhuolia
2024-08-04 22:20:31 +02:00
parent 647bed5c67
commit 86631ea8c3
4 changed files with 13 additions and 8 deletions

View File

@@ -167,7 +167,7 @@ export default class NewCashflowTransactionController extends BaseController {
* @param {NextFunction} next
*/
private revertCategorizedCashflowTransaction = async (
req: Request,
req: Request<{ id: number }>,
res: Response,
next: NextFunction
) => {
@@ -280,7 +280,7 @@ export default class NewCashflowTransactionController extends BaseController {
* @param {NextFunction} next
*/
public getUncategorizedCashflowTransactions = async (
req: Request,
req: Request<{ id: number }>,
res: Response,
next: NextFunction
) => {