From b06e3c3c044e426860f72363127eba2e68dbdd58 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Tue, 26 Apr 2022 13:28:36 +0200 Subject: [PATCH] proper TS definition --- backend/src/seeds/factory/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/seeds/factory/user.ts b/backend/src/seeds/factory/user.ts index 81e4785dd..4b5913d48 100644 --- a/backend/src/seeds/factory/user.ts +++ b/backend/src/seeds/factory/user.ts @@ -5,7 +5,7 @@ import { UserInterface } from '@/seeds/users/UserInterface' import { ApolloServerTestClient } from 'apollo-server-testing' export const userFactory = async ( - client: any, + client: ApolloServerTestClient, user: UserInterface, ): Promise => { const { mutate } = client