MCPcopy Create free account
hub / github.com/AnukarOP/claude-code-leaked / getBaseRenderOptions

Function getBaseRenderOptions

source code/utils/renderOptions.ts:70–79  ·  view source on GitHub ↗
(
  exitOnCtrlC: boolean = false,
)

Source from the content-addressed store, hash-verified

68 * @param exitOnCtrlC - Whether to exit on Ctrl+C (usually false for dialogs)
69 */
70export function getBaseRenderOptions(
71 exitOnCtrlC: boolean = false,
72): RenderOptions {
73 const stdin = getStdinOverride()
74 const options: RenderOptions = { exitOnCtrlC }
75 if (stdin) {
76 options.stdin = stdin
77 }
78 return options
79}

Callers 4

getRenderContextFunction · 0.85
runFunction · 0.85
showInvalidConfigDialogFunction · 0.85

Calls 1

getStdinOverrideFunction · 0.85

Tested by

no test coverage detected