(value: unknown)
| 2 | import type { FilePathRenderStyle } from './runtime-config-types.ts'; |
| 3 | |
| 4 | export function isFilePathRenderStyle(value: unknown): value is FilePathRenderStyle { |
| 5 | return value === 'tree' || value === 'list'; |
| 6 | } |
| 7 | |
| 8 | export function resolveFilePathRenderStyle(options: { |
| 9 | explicit?: FilePathRenderStyle; |
no outgoing calls
no test coverage detected