Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardocque committed Jun 3, 2023
1 parent eb22d24 commit 5d57667
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/react-reconciler/src/ReactInternalTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,10 @@ export type Dispatcher = {
initialArg: I,
init?: (I) => S,
): [S, Dispatch<A>],
useContext<T>(context: ReactContext<T>, filterCallback: ((prevState: any, nextState: any) => boolean) | void | null): T,
useContext<T>(
context: ReactContext<T>,
filterCallback: ((prevState: any, nextState: any) => boolean) | void | null,
): T,
useRef<T>(initialValue: T): {current: T},
useEffect(
create: () => (() => void) | void,
Expand Down

0 comments on commit 5d57667

Please sign in to comment.