declare type Solution = { solutionFile: string; }; declare type Project = { projectFile: string; }; declare type Options = { configFile: string; verify?: boolean; }; declare function tsTypeGen(options: Solution & Options): Promise; declare function tsTypeGen(options: Project & Options): Promise; export default tsTypeGen;