| 68 | }; |
| 69 | |
| 70 | export interface CommonOptions { |
| 71 | input?: Readable; |
| 72 | output?: Writable; |
| 73 | signal?: AbortSignal; |
| 74 | withGuide?: boolean; |
| 75 | } |
| 76 | |
| 77 | export function formatInstructionFooter(instructions: string[], hasGuide: boolean): string[] { |
| 78 | const guidePrefix = hasGuide ? `${styleText('cyan', S_BAR)} ` : ''; |
nothing calls this directly
no outgoing calls
no test coverage detected