Skip to content

Commit

Permalink
ingore typescript type check for declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
hemedani committed Jan 7, 2025
1 parent 4c70adf commit cd24960
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/types/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ export const lesanApi = (
TService extends keyof ReqType,
TModel extends keyof ReqType[TService],
TAct extends keyof ReqType[TService][TModel],
// @ts-ignore: Unreachable code error
TSet extends DeepPartial<ReqType[TService][TModel][TAct]["set"]>,
// @ts-ignore: Unreachable code error
TGet extends DeepPartial<ReqType[TService][TModel][TAct]["get"]>,
>(body: {
service?: TService;
Expand Down

0 comments on commit cd24960

Please sign in to comment.