| 5 | |
| 6 | declare module 'typescript' { |
| 7 | interface CreateProgramOptions { |
| 8 | rootNames: ReadonlyArray<string>; |
| 9 | options: ts.CompilerOptions; |
| 10 | projectReferences?: ReadonlyArray<ts.ProjectReference>; |
| 11 | host?: ts.CompilerHost; |
| 12 | oldProgram?: ts.Program; |
| 13 | configFileParsingDiagnostics?: ReadonlyArray<ts.Diagnostic>; |
| 14 | } |
| 15 | interface ProjectReference { |
| 16 | path: string; |
| 17 | originalPath?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…