Skip to content

Commit

Permalink
Fix b.void
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasavila00 committed May 13, 2024
1 parent df26848 commit b57869f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beff-client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const Undefined_ = (): BeffParser<undefined> =>
}
);

const Void_ = (): BeffParser<undefined> =>
const Void_ = (): BeffParser<void> =>
buildParserFromSafeParser(
(input: any) => {
if (input == undefined) {
Expand Down

0 comments on commit b57869f

Please sign in to comment.