Skip to content

Commit 0932ace

Browse files
authored
refactor(cli-workflow): unexport internal-only interfaces (#2436)
* Initial plan * refactor(cli-workflow): remove export from internal interfaces --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 0e2fb9f commit 0932ace

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/cli-workflow.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ export interface WorkflowDependencies {
1717
collectDiagnosticLogs?: (workDir: string) => Promise<void>;
1818
}
1919

20-
export interface WorkflowCallbacks {
20+
interface WorkflowCallbacks {
2121
onHostIptablesSetup?: () => void;
2222
onContainersStarted?: () => void;
2323
}
2424

25-
export interface WorkflowLogger {
25+
interface WorkflowLogger {
2626
info: (message: string, ...args: unknown[]) => void;
2727
success: (message: string, ...args: unknown[]) => void;
2828
warn: (message: string, ...args: unknown[]) => void;
2929
}
3030

31-
export interface WorkflowOptions extends WorkflowCallbacks {
31+
interface WorkflowOptions extends WorkflowCallbacks {
3232
logger: WorkflowLogger;
3333
performCleanup: () => Promise<void>;
3434
}

0 commit comments

Comments
 (0)