-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
namespace TypeScriptBuilder | ||
namespace TypeScriptBuilder | ||
{ | ||
public class TypeScriptGeneratorOptions | ||
{ | ||
public bool UseCamelCase = true; // changes fields names: TestField1 -> testField1 | ||
public bool EmitIinInterface = true; // use I in interface names: MyData -> IMyData | ||
public bool EmitReadonly = true; // emits readonly for readonly fields (need TypeScript 2.0) | ||
public bool EmitComments = false; // emits comments with C# type | ||
public bool EmitComments = false; // emits comments with oryginal C# type | ||
} | ||
} |