Skip to content

Commit e480211

Browse files
SamChou19815facebook-github-bot
authored andcommitted
Fix or expose previously hidden type errors to prepare for LTI mode
Summary: Changelog: [Internal] Differential Revision: D40600946 fbshipit-source-id: d169402eb16204ac62788806d6d3fb900776f3d2
1 parent 6e18f1f commit e480211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/jest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ type JestObjectType = {
810810
* Returns a new, unused mock function. Optionally takes a mock
811811
* implementation.
812812
*/
813-
fn<TArguments: $ReadOnlyArray<mixed> = $ReadOnlyArray<mixed>, TReturn = any>(
813+
fn<TArguments: $ReadOnlyArray<mixed> = $ReadOnlyArray<any>, TReturn = any>(
814814
implementation?: (...args: TArguments) => TReturn,
815815
): JestMockFn<TArguments, TReturn>,
816816
/**

0 commit comments

Comments
 (0)