( ctx: CommandContext, )
| 476 | } |
| 477 | |
| 478 | export async function printPersistConfig( |
| 479 | ctx: CommandContext, |
| 480 | ): Promise<EnhancedPersistConfig> { |
| 481 | const json = await runPrintConfig(ctx); |
| 482 | return parsePersistConfig(json); |
| 483 | } |
| 484 | |
| 485 | export function hasDefaultPersistFormats( |
| 486 | config: EnhancedPersistConfig, |
no test coverage detected