You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -63,6 +64,7 @@ public TypeScriptAngularClientCodegen() {
63
64
this.cliOptions.add(newCliOption(WITH_INTERFACES, "Setting this property to true will generate interfaces next to the default class implementations.", SchemaTypeUtil.BOOLEAN_TYPE).defaultValue(Boolean.FALSE.toString()));
64
65
this.cliOptions.add(newCliOption(NG_VERSION, "The version of Angular. Default is '4.3'"));
65
66
this.cliOptions.add(newCliOption(PROVIDED_IN_ROOT, "Use this property to provide Injectables in root (it is only valid in angular version greater or equal to 6.0.0).", SchemaTypeUtil.BOOLEAN_TYPE).defaultValue(Boolean.FALSE.toString()));
67
+
this.cliOptions.add(newCliOption(USE_OVERRIDE, "Use this property to place `override` keyword in encoder methods.", SchemaTypeUtil.BOOLEAN_TYPE).defaultValue(Boolean.FALSE.toString()));
66
68
}
67
69
68
70
@Override
@@ -187,6 +189,11 @@ public void processOpts() {
187
189
}
188
190
}
189
191
192
+
if (additionalProperties.containsKey(USE_OVERRIDE)) {
0 commit comments