diff --git a/packages/jest-worker/src/workers/processChild.ts b/packages/jest-worker/src/workers/processChild.ts index d4d38675a73c..c56a7dd0cbea 100644 --- a/packages/jest-worker/src/workers/processChild.ts +++ b/packages/jest-worker/src/workers/processChild.ts @@ -11,12 +11,12 @@ import { CHILD_MESSAGE_INITIALIZE, ChildMessageCall, ChildMessageInitialize, + FunctionLike, PARENT_MESSAGE_CLIENT_ERROR, PARENT_MESSAGE_ERROR, PARENT_MESSAGE_OK, PARENT_MESSAGE_SETUP_ERROR, } from '../types'; -import type {FunctionLike} from '../types'; let file: string | null = null; let setupArgs: Array = []; diff --git a/packages/jest-worker/src/workers/threadChild.ts b/packages/jest-worker/src/workers/threadChild.ts index 9d7df04a6dda..65bc11160722 100644 --- a/packages/jest-worker/src/workers/threadChild.ts +++ b/packages/jest-worker/src/workers/threadChild.ts @@ -12,12 +12,12 @@ import { CHILD_MESSAGE_INITIALIZE, ChildMessageCall, ChildMessageInitialize, + FunctionLike, PARENT_MESSAGE_CLIENT_ERROR, PARENT_MESSAGE_ERROR, PARENT_MESSAGE_OK, PARENT_MESSAGE_SETUP_ERROR, } from '../types'; -import type {FunctionLike} from '../types'; let file: string | null = null; let setupArgs: Array = [];