Skip to content

Commit

Permalink
Change void to undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
BartoszGrajdek committed Aug 29, 2023
1 parent 7dad953 commit f6ec2ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libs/getPlaidDesktopMessage/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import GetPlaidDesktopMessage from './types';

const getPlaidDesktopMessage: GetPlaidDesktopMessage = () => {};
const getPlaidDesktopMessage: GetPlaidDesktopMessage = () => undefined;

export default getPlaidDesktopMessage;
2 changes: 1 addition & 1 deletion src/libs/getPlaidDesktopMessage/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
type GetPlaidDesktopMessage = () => string | void;
type GetPlaidDesktopMessage = () => string | undefined;

export default GetPlaidDesktopMessage;

0 comments on commit f6ec2ef

Please sign in to comment.