private string HandleOptional(TypeScriptType typeScriptType) { var vt = typeScriptType as ValueType; if (vt != null) { return vt.IsNullable ? "?" : ""; } return ""; }
private string GetPropertyComment(TypeScriptType p) { return null; }
public string GetTypeName(TypeScriptType tst) { return "any"; }
private TypeScriptType ProcessTypeScriptType(Type t, TypeScriptType tst) { return tst; }
public string GetModuleName(TypeScriptType type) { return ""; }