(distPath: string)
| 309 | * Parse public API exports from index.d.ts files in the dist folder |
| 310 | */ |
| 311 | export async function parsePublicApi(distPath: string): Promise<PublicApiExports> { |
| 312 | const parser = new PublicApiParser(distPath); |
| 313 | return await parser.parseIndexFiles(); |
| 314 | } |
no test coverage detected
searching dependent graphs…