├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── release.config.js └── src ├── Directory.Build.props ├── Typescript.Tests ├── CollectionTypes │ ├── CollectionGeneratorTests.Generator_TypeWithArrayProperty_ShouldRenderToArray.approved.txt │ ├── CollectionGeneratorTests.Generator_TypeWithEnumerableProp_ShouldRenderToArray.approved.txt │ ├── CollectionGeneratorTests.Generator_TypeWithPropThatDerivesFromEnumerable_ShouldRenderToArray.approved.txt │ └── CollectionGeneratorTests.cs ├── DictionaryTypes │ ├── DictionaryGeneratorTests.Generator_TypeWithComplexDictionaryValueType_ShouldRenderToTypescriptMap.approved.txt │ ├── DictionaryGeneratorTests.Generator_TypeWithCustomDictionaryValueType_ShouldRenderToTypescriptMap.approved.txt │ ├── DictionaryGeneratorTests.Generator_TypeWithDirectDictionaryProp_ShouldRenderToTypescriptMap.approved.txt │ ├── DictionaryGeneratorTests.Generator_TypeWithEnumValueType_ShouldRenderToTypescriptMap.approved.txt │ └── DictionaryGeneratorTests.cs ├── Enums │ ├── EnumGeneratorTests.Generator_TypeWithEnumAndEnumValueFormatter_RendersValues.approved.txt │ ├── EnumGeneratorTests.Generator_TypeWithEnum_GeneratesSuccessfully.approved.txt │ ├── EnumGeneratorTests.Generator_TypeWithNullableEnum_GeneratesSuccessfully.approved.txt │ ├── EnumGeneratorTests.Generator_TypesWithSharedEnum_ShouldOnlyDecorateTheEnumOnce.approved.txt │ ├── EnumGeneratorTests.Generator_TypesWithSharedEnum_ShouldOnlyGenerateTheEnumOnce.approved.txt │ └── EnumGeneratorTests.cs ├── Generics │ ├── GenericsGeneratorTests.Generator_TypeWithGenericArguments_GeneratesSuccessfully.approved.txt │ ├── GenericsGeneratorTests.Generator_TypeWithOpenGenericArguments_GeneratesSuccessfully.approved.txt │ └── GenericsGeneratorTests.cs ├── Inheritence │ ├── InheritenceGeneratorTests.Generator_TypeWithBaseClass_GeneratesSuccessfully.approved.txt │ └── InheritenceGeneratorTests.cs ├── NullableTypes │ ├── NullableTypeGeneratorTests.Generator_TypeWithNestedNullable_GeneratesSuccessfully.approved.txt │ ├── NullableTypeGeneratorTests.Generator_TypeWithNullable_GeneratesSuccessfully.approved.txt │ └── NullableTypeGeneratorTests.cs ├── Simple │ ├── MemberFilterTests.WhenFilterSpecified_PropertyIsIgnored.approved.txt │ ├── MemberFilterTests.WhenNoFilterSpecified_TypeIsEmitted.approved.txt │ ├── MemberFilterTests.cs │ ├── SimpleGeneratorTests.Generator_TypeWithBuiltInPropsOnly_GeneratesSuccessfully.approved.txt │ ├── SimpleGeneratorTests.Generator_TypeWithCustomValueTypeProp_ShouldRenderCustomTypeSeparately.approved.txt │ ├── SimpleGeneratorTests.Generator_TypeWithFieldsAndPropsButSetToPropsOnly_ShouldOnlyRenderProps.approved.txt │ ├── SimpleGeneratorTests.Generator_TypeWithFields_ShouldRenderFields.approved.txt │ ├── SimpleGeneratorTests.Generator_TypeWithHiddenInnerType_OnlyPublicPropertiesShouldBeRendered.approved.txt │ ├── SimpleGeneratorTests.Generator_TypeWithNestedSimpleTypes_GeneratesSuccessfully.approved.txt │ ├── SimpleGeneratorTests.Generator_UsingModule_ShouldRenderESModule.approved.txt │ ├── SimpleGeneratorTests.cs │ ├── TypeDecoratorTests.Generator_CommentDecoration_GenerateSuccessfully.approved.txt │ └── TypeDecoratorTests.cs ├── StringExtensionTests.IndentEachLine_EmptyLines_ShouldntIndentEmptyLines.approved.txt ├── StringExtensionTests.IndentEachLine_NoEmptyLines_ShouldIndentAll.approved.txt ├── StringExtensionTests.cs ├── TestHelpers.cs └── Typescript.Tests.csproj ├── Typescriptr.sln └── Typescriptr ├── Exceptions └── TypeMapMissingException.cs ├── Formatters ├── CollectionPropertyFormatter.cs ├── DictionaryPropertyFormatter.cs ├── EnumFormatter.cs └── SourceLocationCommentDecorator.cs ├── GenerationResult.cs ├── MemberType.cs ├── QuoteStyle.cs ├── StringExtensions.cs ├── Traverse.cs ├── TypeExtensions.cs ├── TypeScriptGenerator.cs └── Typescriptr.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/appveyor.yml -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/release.config.js -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.Generator_TypeWithArrayProperty_ShouldRenderToArray.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.Generator_TypeWithArrayProperty_ShouldRenderToArray.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.Generator_TypeWithEnumerableProp_ShouldRenderToArray.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.Generator_TypeWithEnumerableProp_ShouldRenderToArray.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.Generator_TypeWithPropThatDerivesFromEnumerable_ShouldRenderToArray.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.Generator_TypeWithPropThatDerivesFromEnumerable_ShouldRenderToArray.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/CollectionTypes/CollectionGeneratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithComplexDictionaryValueType_ShouldRenderToTypescriptMap.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithComplexDictionaryValueType_ShouldRenderToTypescriptMap.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithCustomDictionaryValueType_ShouldRenderToTypescriptMap.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithCustomDictionaryValueType_ShouldRenderToTypescriptMap.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithDirectDictionaryProp_ShouldRenderToTypescriptMap.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithDirectDictionaryProp_ShouldRenderToTypescriptMap.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithEnumValueType_ShouldRenderToTypescriptMap.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.Generator_TypeWithEnumValueType_ShouldRenderToTypescriptMap.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/DictionaryTypes/DictionaryGeneratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypeWithEnumAndEnumValueFormatter_RendersValues.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypeWithEnumAndEnumValueFormatter_RendersValues.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypeWithEnum_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypeWithEnum_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypeWithNullableEnum_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypeWithNullableEnum_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypesWithSharedEnum_ShouldOnlyDecorateTheEnumOnce.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypesWithSharedEnum_ShouldOnlyDecorateTheEnumOnce.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypesWithSharedEnum_ShouldOnlyGenerateTheEnumOnce.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Enums/EnumGeneratorTests.Generator_TypesWithSharedEnum_ShouldOnlyGenerateTheEnumOnce.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Enums/EnumGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Enums/EnumGeneratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/Generics/GenericsGeneratorTests.Generator_TypeWithGenericArguments_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Generics/GenericsGeneratorTests.Generator_TypeWithGenericArguments_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Generics/GenericsGeneratorTests.Generator_TypeWithOpenGenericArguments_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- 1 | export interface TypeWithOpenGenericArguments { 2 | } 3 | 4 | -------------------------------------------------------------------------------- /src/Typescript.Tests/Generics/GenericsGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Generics/GenericsGeneratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/Inheritence/InheritenceGeneratorTests.Generator_TypeWithBaseClass_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Inheritence/InheritenceGeneratorTests.Generator_TypeWithBaseClass_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Inheritence/InheritenceGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Inheritence/InheritenceGeneratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/NullableTypes/NullableTypeGeneratorTests.Generator_TypeWithNestedNullable_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/NullableTypes/NullableTypeGeneratorTests.Generator_TypeWithNestedNullable_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/NullableTypes/NullableTypeGeneratorTests.Generator_TypeWithNullable_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/NullableTypes/NullableTypeGeneratorTests.Generator_TypeWithNullable_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/NullableTypes/NullableTypeGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/NullableTypes/NullableTypeGeneratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/MemberFilterTests.WhenFilterSpecified_PropertyIsIgnored.approved.txt: -------------------------------------------------------------------------------- 1 | export interface SimpleClass { 2 | serializedType: number; 3 | } 4 | 5 | 6 | --- 7 | -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/MemberFilterTests.WhenNoFilterSpecified_TypeIsEmitted.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/MemberFilterTests.WhenNoFilterSpecified_TypeIsEmitted.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/MemberFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/MemberFilterTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithBuiltInPropsOnly_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithBuiltInPropsOnly_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithCustomValueTypeProp_ShouldRenderCustomTypeSeparately.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithCustomValueTypeProp_ShouldRenderCustomTypeSeparately.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithFieldsAndPropsButSetToPropsOnly_ShouldOnlyRenderProps.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithFieldsAndPropsButSetToPropsOnly_ShouldOnlyRenderProps.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithFields_ShouldRenderFields.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithFields_ShouldRenderFields.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithHiddenInnerType_OnlyPublicPropertiesShouldBeRendered.approved.txt: -------------------------------------------------------------------------------- 1 | export interface TypeWithPrivateProperties { 2 | publicGuidProp: string; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithNestedSimpleTypes_GeneratesSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_TypeWithNestedSimpleTypes_GeneratesSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_UsingModule_ShouldRenderESModule.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/SimpleGeneratorTests.Generator_UsingModule_ShouldRenderESModule.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/SimpleGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/SimpleGeneratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/TypeDecoratorTests.Generator_CommentDecoration_GenerateSuccessfully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/TypeDecoratorTests.Generator_CommentDecoration_GenerateSuccessfully.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/Simple/TypeDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Simple/TypeDecoratorTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/StringExtensionTests.IndentEachLine_EmptyLines_ShouldntIndentEmptyLines.approved.txt: -------------------------------------------------------------------------------- 1 | AB 2 | 3 | CD 4 | -------------------------------------------------------------------------------- /src/Typescript.Tests/StringExtensionTests.IndentEachLine_NoEmptyLines_ShouldIndentAll.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/StringExtensionTests.IndentEachLine_NoEmptyLines_ShouldIndentAll.approved.txt -------------------------------------------------------------------------------- /src/Typescript.Tests/StringExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/StringExtensionTests.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/TestHelpers.cs -------------------------------------------------------------------------------- /src/Typescript.Tests/Typescript.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescript.Tests/Typescript.Tests.csproj -------------------------------------------------------------------------------- /src/Typescriptr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr.sln -------------------------------------------------------------------------------- /src/Typescriptr/Exceptions/TypeMapMissingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/Exceptions/TypeMapMissingException.cs -------------------------------------------------------------------------------- /src/Typescriptr/Formatters/CollectionPropertyFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/Formatters/CollectionPropertyFormatter.cs -------------------------------------------------------------------------------- /src/Typescriptr/Formatters/DictionaryPropertyFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/Formatters/DictionaryPropertyFormatter.cs -------------------------------------------------------------------------------- /src/Typescriptr/Formatters/EnumFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/Formatters/EnumFormatter.cs -------------------------------------------------------------------------------- /src/Typescriptr/Formatters/SourceLocationCommentDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/Formatters/SourceLocationCommentDecorator.cs -------------------------------------------------------------------------------- /src/Typescriptr/GenerationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/GenerationResult.cs -------------------------------------------------------------------------------- /src/Typescriptr/MemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/MemberType.cs -------------------------------------------------------------------------------- /src/Typescriptr/QuoteStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/QuoteStyle.cs -------------------------------------------------------------------------------- /src/Typescriptr/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/StringExtensions.cs -------------------------------------------------------------------------------- /src/Typescriptr/Traverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/Traverse.cs -------------------------------------------------------------------------------- /src/Typescriptr/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Typescriptr/TypeScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/TypeScriptGenerator.cs -------------------------------------------------------------------------------- /src/Typescriptr/Typescriptr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkinsman/Typescriptr/HEAD/src/Typescriptr/Typescriptr.csproj --------------------------------------------------------------------------------