├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TypeScriptDefinitionGenerator.sln ├── appveyor.yml ├── art ├── context-menu.png ├── nested-file.png └── settings.png ├── lib └── Microsoft.VisualStudio.Telemetry.dll └── src ├── Commands └── ToggleCustomTool.cs ├── Constants.cs ├── DtsPackage.cs ├── DtsPackage.vsct ├── DtsPackage1.cs ├── Generator ├── DtsGenerator.cs ├── GenerationService.cs ├── IntellisenseObject.cs ├── IntellisenseParser.cs ├── IntellisenseProperty.cs ├── IntellisenseType.cs └── IntellisenseWriter.cs ├── Helpers ├── Utility.cs └── VSHelpers.cs ├── Options.cs ├── Properties └── AssemblyInfo.cs ├── Resources └── Icon.png ├── TypeScriptDefinitionGenerator.csproj ├── source.extension.cs ├── source.extension.vsixmanifest └── website.pkgdef /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/README.md -------------------------------------------------------------------------------- /TypeScriptDefinitionGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/TypeScriptDefinitionGenerator.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/art/context-menu.png -------------------------------------------------------------------------------- /art/nested-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/art/nested-file.png -------------------------------------------------------------------------------- /art/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/art/settings.png -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Telemetry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/lib/Microsoft.VisualStudio.Telemetry.dll -------------------------------------------------------------------------------- /src/Commands/ToggleCustomTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Commands/ToggleCustomTool.cs -------------------------------------------------------------------------------- /src/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Constants.cs -------------------------------------------------------------------------------- /src/DtsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/DtsPackage.cs -------------------------------------------------------------------------------- /src/DtsPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/DtsPackage.vsct -------------------------------------------------------------------------------- /src/DtsPackage1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/DtsPackage1.cs -------------------------------------------------------------------------------- /src/Generator/DtsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Generator/DtsGenerator.cs -------------------------------------------------------------------------------- /src/Generator/GenerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Generator/GenerationService.cs -------------------------------------------------------------------------------- /src/Generator/IntellisenseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Generator/IntellisenseObject.cs -------------------------------------------------------------------------------- /src/Generator/IntellisenseParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Generator/IntellisenseParser.cs -------------------------------------------------------------------------------- /src/Generator/IntellisenseProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Generator/IntellisenseProperty.cs -------------------------------------------------------------------------------- /src/Generator/IntellisenseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Generator/IntellisenseType.cs -------------------------------------------------------------------------------- /src/Generator/IntellisenseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Generator/IntellisenseWriter.cs -------------------------------------------------------------------------------- /src/Helpers/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Helpers/Utility.cs -------------------------------------------------------------------------------- /src/Helpers/VSHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Helpers/VSHelpers.cs -------------------------------------------------------------------------------- /src/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Options.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/TypeScriptDefinitionGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/TypeScriptDefinitionGenerator.csproj -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/website.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TypeScriptDefinitionGenerator/HEAD/src/website.pkgdef --------------------------------------------------------------------------------