csharp-models-to-typescript icon indicating copy to clipboard operation
csharp-models-to-typescript copied to clipboard

C# models to TypeScript

Results 28 csharp-models-to-typescript issues
Sort by recently updated
recently updated
newest added

Adds `@deprecated` comment on typescript types when it has `Obsolete` attribute in C#. It's looking for the `[Obsolete]` attribute on classes, interfaces and enums.

Some projects don't use semicolons in javascript files. A setting for this avoids having to open the generated file and apply code formatting to remove the semicolons. If the name...

Some people want to avoid polluting the code with unnecessary comments. If the name `omitFilePathComment` for this configuration is not good, I welcome suggestions.

I can't convert the type `byte[]` to another type, causing my typescript file to output incorrect types. Example: Config file: ```json { "customTypeTranslations": { "byte[]" : "string" } } ```...

This block: ``` [OptionalField] public UserType UserType= UserType.Other; ``` is converted to this: ``` userType=: UserType; ``` but must be converted to this: ``` userType: UserType; ```

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Hey, really cool tool. Tried it on on set of c# code models we have to compare it to our TypeScript models. This does reveal one issue - some types...

Hello, I have the following property in my c# class `public DateTime CreatedTimeStampUTC` the tool generates `createdTimeStampUtc: string`. Would it be possible to add some kind of exception? in this...

Force the custom translation defined by the user before perfoming other checks. There are some problems when the user tries to custom translate an C# Array to a javascript type....