import IBuilder from "./IBuilder"; export default interface ICodeNarratorConfig { project_name: string; repository_url: string; project_file: string; config_files: string[]; entry_file: string; cli_file: string; project_path: string; source_path: string; documentation_path: string; test_path: string; readmeRoot: boolean; builderPlugins: any[]; generatorPlugin: any[]; gptSystemCommands: string[]; documentation_type: string; document_file_extension: string; folderRootFileName: string; cache_file: string; gptModel: string; builders: IBuilder[]; include: string[]; exclude: string[]; aiService: any; }