This project uses Node.JS and returns a C# representation of the TypeScript Abstract Syntax Tree
Node.JS must be installed for this library to work.
var parsed = await TSDParser.ParseDefinition("""
/**
* interface comment
*/
export interface Test1 {
/**
* prop comment
*/
prop: string;
method(): void;
}
""");