Skip to content

Commit d6ca433

Browse files
committed
explicit run controller type imports
1 parent b0fab0a commit d6ca433

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

packages/cli-v3/src/entryPoints/managed-run-controller.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,25 @@ import { z } from "zod";
55
import { randomUUID } from "crypto";
66
import { readJSONFile } from "../utilities/fileSystem.js";
77
import {
8-
CompleteRunAttemptResult,
8+
type CompleteRunAttemptResult,
99
HeartbeatService,
10-
RunExecutionData,
11-
TaskRunExecutionResult,
12-
TaskRunFailedExecutionResult,
10+
type RunExecutionData,
11+
type TaskRunExecutionResult,
12+
type TaskRunFailedExecutionResult,
1313
WorkerManifest,
1414
} from "@trigger.dev/core/v3";
1515
import {
1616
WarmStartClient,
1717
WORKLOAD_HEADERS,
18-
WorkloadClientToServerEvents,
18+
type WorkloadClientToServerEvents,
19+
type WorkloadDebugLogRequestBody,
1920
WorkloadHttpClient,
20-
WorkloadServerToClientEvents,
21+
type WorkloadServerToClientEvents,
2122
type WorkloadRunAttemptStartResponseBody,
2223
} from "@trigger.dev/core/v3/workers";
2324
import { assertExhaustive } from "../utilities/assertExhaustive.js";
2425
import { setTimeout as sleep } from "timers/promises";
25-
import { io, Socket } from "socket.io-client";
26+
import { io, type Socket } from "socket.io-client";
2627

2728
// All IDs are friendly IDs
2829
const Env = z.object({

0 commit comments

Comments
 (0)