Skip to content

Commit

Permalink
fixed linter complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
slim committed Nov 24, 2023
1 parent f1010fb commit 9283813
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,22 +226,22 @@ export type ApiPlatformAdminDataProviderTypeParams<T extends DataProviderType> =
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;
Expand Down

0 comments on commit 9283813

Please sign in to comment.