We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13a205 commit 45f697dCopy full SHA for 45f697d
1 file changed
src/models/config.model.ts
@@ -4,10 +4,11 @@ import { TemplateConfigModel } from './template-config.model';
4
5
export interface ConfigI {
6
outputPath: string;
7
- exportPath: string;
8
- outputModelsPath: string;
9
- outputApisPath: string;
10
- templateConfig: TemplateConfigModel;
+ readonly exportPath: string;
+ readonly outputModelsPath: string;
+ readonly outputApisPath: string;
+ template: string;
11
+ readonly templateConfig: TemplateConfigModel;
12
}
13
14
class ConfigModel implements ConfigI {
0 commit comments