Skip to content

Commit

Permalink
chore(types): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyJasonBennett committed Apr 28, 2024
1 parent bda409c commit 47bb628
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/fiber/src/core/reconciler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ const createReconciler = Reconciler as unknown as <
>,
'getCurrentEventPriority' | 'prepareUpdate' | 'commitUpdate'
> & {
// Changed
/**
* This method should mutate the `instance` and perform prop diffing if needed.
*
Expand All @@ -74,12 +73,17 @@ const createReconciler = Reconciler as unknown as <
): void

// Undocumented
// https://github.com/facebook/react/pull/26722
NotPendingTransition: TransitionStatus | null
// https://github.com/facebook/react/pull/28751
setCurrentUpdatePriority(newPriority: EventPriority): void
getCurrentUpdatePriority(): EventPriority
resolveUpdatePriority(): EventPriority
// https://github.com/facebook/react/pull/28804
resetFormInstance(form: FormInstance): void
// https://github.com/facebook/react/pull/25105
requestPostPaintCallback(callback: (time: number) => void): void
// https://github.com/facebook/react/pull/26025
shouldAttemptEagerTransition(): boolean

/**
Expand Down Expand Up @@ -556,5 +560,5 @@ export const reconciler = createReconciler<
return DefaultEventPriority
}
},
resetFormInstance(): void {},
resetFormInstance() {},
})

0 comments on commit 47bb628

Please sign in to comment.