| 114 | } |
| 115 | |
| 116 | export interface Sample { |
| 117 | path: string; |
| 118 | additionalRendererOptions: RendererOptions; |
| 119 | } |
| 120 | |
| 121 | export function samplesFromPaths(paths: string[]): Sample[] { |
| 122 | return paths.map(p => ({ path: p, additionalRendererOptions: {} })); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…