TsSimpleAst
Getting Source Files
After source files are added, you will need to get them in order to navigate or make changes.
All
const sourceFiles = ast.getSourceFiles();
By file path
Will return the first source file that matches the end of the provided file path:
const personFile = ast.getSourceFile("Models/Person.ts");
By condition
Will return the first source file that matches the provided condition:
const fileWithFiveClasses = ast.getSourceFile(f => f.getClasses().length === 5);
Next step: Example - Navigating Within SourceFiles