Skip to content

Commit

Permalink
remove null from ReactNode | null union (because null already v…
Browse files Browse the repository at this point in the history
…alue of `ReactNode`) (#3090)
  • Loading branch information
dimaMachina authored Mar 7, 2023
1 parent 301f859 commit 01e6843
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/graphiql-plugin-explorer/src/graphiql-explorer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ declare module 'graphiql-explorer' {
variable: string;
atom: string;
} | null;
arrowOpen?: ReactNode | null;
arrowClosed?: ReactNode | null;
checkboxChecked?: ReactNode | null;
checkboxUnchecked?: ReactNode | null;
arrowOpen?: ReactNode;
arrowClosed?: ReactNode;
checkboxChecked?: ReactNode;
checkboxUnchecked?: ReactNode;
styles?: {
explorerActionsStyle?: CSSProperties;
buttonStyle?: CSSProperties;
Expand Down

0 comments on commit 01e6843

Please sign in to comment.