From 92838134fb3d130b7cc54c238c8b54400e5053a9 Mon Sep 17 00:00:00 2001 From: Slim Date: Fri, 24 Nov 2023 17:47:15 +0100 Subject: [PATCH] fixed linter complaints --- src/types.ts | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/types.ts b/src/types.ts index f060ef14..30032f7d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -226,22 +226,22 @@ export type ApiPlatformAdminDataProviderTypeParams = T extends typeof GET_LIST ? ApiPlatformAdminGetListParams : T extends typeof GET_ONE - ? ApiPlatformAdminGetOneParams - : T extends typeof GET_MANY - ? ApiPlatformAdminGetManyParams - : T extends typeof GET_MANY_REFERENCE - ? ApiPlatformAdminGetManyReferenceParams - : T extends typeof UPDATE - ? ApiPlatformAdminUpdateParams - : T extends typeof UPDATE_MANY - ? ApiPlatformAdminUpdateManyParams - : T extends typeof CREATE - ? ApiPlatformAdminCreateParams - : T extends typeof DELETE - ? ApiPlatformAdminDeleteParams - : T extends typeof DELETE_MANY - ? ApiPlatformAdminDeleteManyParams - : never; + ? ApiPlatformAdminGetOneParams + : T extends typeof GET_MANY + ? ApiPlatformAdminGetManyParams + : T extends typeof GET_MANY_REFERENCE + ? ApiPlatformAdminGetManyReferenceParams + : T extends typeof UPDATE + ? ApiPlatformAdminUpdateParams + : T extends typeof UPDATE_MANY + ? ApiPlatformAdminUpdateManyParams + : T extends typeof CREATE + ? ApiPlatformAdminCreateParams + : T extends typeof DELETE + ? ApiPlatformAdminDeleteParams + : T extends typeof DELETE_MANY + ? ApiPlatformAdminDeleteManyParams + : never; export interface ApiPlatformAdminDataProviderFactoryParams { entrypoint: string;