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
Copy file name to clipboardExpand all lines: docs/generators.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,34 @@ Below is a list of additional options available for a given generator.
37
37
|---|---|---|---|
38
38
|`renderTypes`| Boolean | Render signature for types. |`true`|
39
39
|`modelType`| String | It indicates which model type should be rendered for the `object` type. Its value can be either `interface` or `class`. |`class`|
40
+
|`namingConvention`| Object | Options for naming conventions. | - |
41
+
|`namingConvention.type`| Function | A function that returns the format of the type. |_Returns pascal cased name_|
42
+
|`namingConvention.property`| Function | A function that returns the format of the property. |_Returns camel cased name_|
|`collectionType`| String | It indicates with which signature should be rendered the `array` type. Its value can be either `List` (`List<{type}>`) or `Array` (`{type}[]`). |`List`|
49
+
|`namingConvention`| Object | Options for naming conventions. | - |
50
+
|`namingConvention.type`| Function | A function that returns the format of the type. |_Returns pascal cased name_|
51
+
|`namingConvention.property`| Function | A function that returns the format of the property. |_Returns camel cased name_|
0 commit comments