Skip to content

Commit

Permalink
fix: mapped types shim should return classes #2610
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Sep 21, 2023
1 parent 9ebe5e8 commit 73edf73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/extra/swagger-shim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,16 +153,16 @@ export function SwaggerModule() {
return () => {};
}
export function IntersectionType() {
return () => {};
return class {};
}
export function OmitType() {
return () => {};
return class {};
}
export function PartialType() {
return () => {};
return class {};
}
export function PickType() {
return () => {};
return class {};
}
export function getSchemaPath() {
return () => '';
Expand Down

0 comments on commit 73edf73

Please sign in to comment.