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`)
  • Loading branch information
dimaMachina committed Mar 6, 2023
1 parent 5cf77e0 commit a4b39e7
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 a4b39e7

Please sign in to comment.