| 4 | import * as ts from "typescript" |
| 5 | |
| 6 | export interface SourceFile { |
| 7 | fileContent: string |
| 8 | filePath: string |
| 9 | ts?: { |
| 10 | program: ts.Program |
| 11 | sourceFile: ts.SourceFile |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | export interface TableSchema { |
| 16 | sourceFile: SourceFile |
nothing calls this directly
no outgoing calls
no test coverage detected