csharp-to-typescript-acg
v1.0.2
Published
This is package to convert C# poco class to typescript where user have flexibility to configure the library to get desired output. Orginally created by: Yuvraj Sagar Rana
Downloads
3
Maintainers
Readme
csharp-to-typescript
csharp-to-typescript is most flexible and easy to use npm package which doesn't use any third party library for conversion. This package have various options while converting C# Poco to typescript.
Dependencies
install
npm i csharp-to-typescript
How to use
- After installation, import the package.
var { CsharpToTs, getConfiguration } = require("csharp-to-typescript");
- Use CsharpToTs to convert your source code a. Method one give your source code as string:
const sourceCodeInString = `public class Address
{
public int Id {get; set;}
public string Street { get; set; }
public string City { get; set; }
}`
var outputTypescript = CsharpToTs(sourceCodeInString, getConfiguration());
console.log(outputTypescript);
Output is
export class Address
{
Id: number;
Street: string;
City: string;
}
Advance Conversion Setting
By default,
- Access modifier are false.
- Method type to signature.
- Change Class to Interface is false.
var preserveModifier = false;
var methodType = "signature"; // other options are 'lambda' or 'controller'
var changeToInterface = false;
You can change like this:
- If you want to preserve accessfier
var preserveModifier = true;
var methodType = "signature"; // other options are 'lambda' or 'controller'
var changeToInterface = false;
const sourceCodeInString = `public class Address
{
public int Id {get; set;}
public string Street { get; set; }
public string City { get; set; }
}`
var outputTypescript = CsharpToTs(sourceCodeInString, getConfiguration(preserveModifier, methodType,changeToInterface ));
console.log(outputTypescript);
Output:
export class Address
{
public Id: number;
public Street: string;
public City: string;
}
- Change class to interface:
var preserveModifier = false;
var methodType = "signature"; // other options are 'lambda' or 'controller'
var changeToInterface = true;
const sourceCodeInString = `public class Address
{
public int Id {get; set;}
public string Street { get; set; }
public string City { get; set; }
}`
var outputTypescript = CsharpToTs(sourceCodeInString, getConfiguration(preserveModifier, methodType,changeToInterface ));
console.log(outputTypescript);
Output:
export interface Address
{
Id: number;
Street: string;
City: string;
}
You can also customized all the variable at once.
var preserveModifier = true;
var methodType = "controller"; // other options are 'lambda' or 'controller'
var changeToInterface = true;