(opts: {
defaults: Record<string, unknown>;
explicitArgs: Record<string, unknown>;
})
| 56 | } |
| 57 | |
| 58 | export function mergeCliSessionDefaults(opts: { |
| 59 | defaults: Record<string, unknown>; |
| 60 | explicitArgs: Record<string, unknown>; |
| 61 | }): Record<string, unknown> { |
| 62 | return mergeSessionDefaultArgs({ |
| 63 | defaults: opts.defaults, |
| 64 | explicitArgs: opts.explicitArgs, |
| 65 | exclusivePairs: CLI_SESSION_DEFAULT_EXCLUSIVE_PAIRS, |
| 66 | }); |
| 67 | } |
no test coverage detected