(
examples: ReadonlyArray<ParsedExample>,
range: readonly [number, number] = [0, 0] as const
)
| 2476 | string, |
| 2477 | { readonly barrelModule: string; readonly names: ReadonlySet<string> } |
| 2478 | > |
| 2479 | readonly namedModuleBySource: ReadonlyMap<string, ReadonlySet<string>> |
| 2480 | } |
| 2481 | |
| 2482 | function createExampleImportPolicy(files: ReadonlyArray<JSDocModelFile>): ExampleImportPolicy { |
| 2483 | const allowedNamed = new Map<string, Set<string>>() |
| 2484 | const namespaceModuleBySource = new Map<string, { readonly barrelModule: string; readonly name: string }>() |
| 2485 | const flatModuleBySource = new Map<string, { readonly barrelModule: string; readonly names: ReadonlySet<string> }>() |
no test coverage detected
searching dependent graphs…